我很困惑为什么我不能从以下 Scala 代码行中产生一个集合:
val pairs = for( v <- vc; o <- oc) yield (v,o)
它在这个函数内部,它使用不可变向量。
private def recMergeVirtualAndReal(mCell: RCell, vc: Vector[Cell], oc: Vector[Cell]): Vector[Cell] = {
var temp_oc = oc
val pairs = for( v <- vc; o <- oc) yield (v,o)
val newVCells =
for((left, right) <- pairs if left contains right) yield {
temp_oc = temp_oc.filterNot(o => o == left || o == right)
captureVCells(left,right,mCell)
}
if(newVCells.nonEmpty) recMergeVirtualAndReal(mCell, recMergeVirtualCells(newVCells ++ vc), temp_oc)
else vc
}
我在堆栈跟踪中收到以下错误:
Exception in thread "main" java.lang.ClassCastException: scala.collection.immutable.Vector cannot be cast to game.Cell
at model.Board$$anonfun$10.apply(Board.scala:223)
at scala.collection.immutable.List.flatMap(List.scala:327)
我很困惑,因为我不想强制转换任何东西,它只是一个没有任何类型转换的简单语句。
如果编译器无法理解类型,我也尝试了这个:
val pairs = for( v: Cell <- vc: Vector[Cell]; o: Cell <- oc: Vector[Cell]) yield (v: Cell,o: Cell)