แก้ไข : เขียนคำถามนี้ใหม่ตามคำตอบเดิม
scala.collection.immutable.Set
ชั้นไม่ได้ covariant ในพารามิเตอร์ชนิดของมัน ทำไมถึงเป็นแบบนี้?
import scala.collection.immutable._
def foo(s: Set[CharSequence]): Unit = {
println(s)
}
def bar(): Unit = {
val s: Set[String] = Set("Hello", "World");
foo(s); //DOES NOT COMPILE, regardless of whether type is declared
//explicitly in the val s declaration
}
foo(s.toSet[CharSequence])
รวบรวมได้ดีtoSet
วิธีเป็น O (1) -asInstanceOf
มันเป็นเพียงแค่การตัด