2

我尝试使用 Scala 2.8 Continuations-PlugIn 构建以下简单的生成器。以下错误来自哪里?

None/None/Some((Unit,Unit))
GenTest.scala:8: error: found cps expression in non-cps position
        yieldValue(1)

None/None/Some((Unit,Unit))
GenTest.scala:9: error: found cps expression in non-cps position
        yieldValue(2)

None/None/Some((Unit,Unit))
GenTest.scala:10: error: found cps expression in non-cps position
        yieldValue(3)

代码:

import scala.util.continuations._

object GenTest {

    val gen = new Generator1[Int] {
        yieldValue(1)
        yieldValue(2)
        yieldValue(3)
    }

    def main(args: Array[String]): Unit = {
        for (v <- gen) {
            println(v)
        }
    }
}



class Generator1[E](gen: => Unit @cps[Unit]) {

  var loop: (E => Unit) = null

  def foreach(f: => (E => Unit)): Unit = {
        loop = f
        reset[Unit,Unit]( gen )
  }

  def yieldValue(value: E): Unit @cps[Unit] =
    shift { genK: (Unit => Unit) =>
      loop( value )
      genK( () )
      ()
    }
}
4

1 回答 1

1

这些yieldValue调用发生在gen的构造函数中,这是不允许的(我假设)。啊,我刚刚注意到您打算将它们作为构造函数参数。好吧,不幸的是,该语法仅适用于方法。我不确定您在这里是否也没有收到另一个错误。

于 2010-04-15T14:49:06.293 回答