尝试在javafx脚本中导入scala.Option时,出现以下javafxc错误:
cannot access scala.Option.$anonfun$orNull$1
bad class file: scala/Option$$anonfun$orNull$1.class(scala:Option$$anonfun$orNull$1.class)
undeclared type variable: A1
Please remove or make sure it appears in the correct subdirectory of the classpath.
import scala.Option;
我使用的是Scala 2.8.1,Javafxc 1.3.1_b101,JVM 1.6.0_21-b06,OS Ubuntu 10.10。在Scala 2.7.7中使用相同的代码。
稍后编辑: 如果我导入scala.immutable.Seq / List / Traversable / Iterable,则会报告相同的错误。我在默认的 Netbeans 6.9.1 JavaFX项目中尝试了导入,该项目在类路径中只有scala-library.jar。