DÜZENLEME : Bu soruyu orijinal cevaba göre yeniden yazdı
scala.collection.immutable.Set
Sınıf kendi türü parametresinde covariant değil. Bu neden?
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])
derlediğini belirtmekte fayda var .toSet
Sadece sarar - yöntem O (1) olupasInstanceOf
.