在REPL中:
import collection.mutable.{ HashSet, SynchronizedSet }
var myPool = new HashSet[String] with SynchronizedSet[String]
myPool += "oh"
myPool += "yes"
myPool = myPool.tail
我得到了:
error: type mismatch;
found : scala.collection.mutable.HashSet[String]
required: scala.collection.mutable.HashSet[String] with scala.collection.mutable.SynchronizedSet[String]
myPool = myPool.tail
^
我做错了什么?
答案 0 :(得分:5)
正如消息所说的那样,myPool.tail
的类型为HashSet[String]
,而您的变量MyPool
已声明为HashSet[String] with SynchronizedSet[String]
您只需要声明要避免过于精确推断的类型。
var myPool : HashSet[String] = new HashSet[String] with SynchronizedSet[String]
请注意,在可变集上,tail
是一项代价高昂的操作,并返回一个新的Set。那可能不是你想要的。 (此外,规范是关于哪个元素将被删除的静音)