Smutnym faktem z życia Scali jest to, że jeśli tworzysz List [Int], możesz sprawdzić, czy twoja instancja jest Listą, i możesz zweryfikować, czy każdy jej pojedynczy element to Int, ale nie to, że jest Listą [ Int], jak można łatwo zweryfikować:
scala> List(1,2,3) match {
| case l : List[String] => println("A list of strings?!")
| case _ => println("Ok")
| }
warning: there were unchecked warnings; re-run with -unchecked for details
A list of strings?!
Opcja -unchecked obciąża winę za kasowanie typu:
scala> List(1,2,3) match {
| case l : List[String] => println("A list of strings?!")
| case _ => println("Ok")
| }
<console>:6: warning: non variable type-argument String in type pattern is unchecked since it is eliminated by erasure
case l : List[String] => println("A list of strings?!")
^
A list of strings?!
Dlaczego tak jest i jak sobie z tym poradzić?
scala 2.10.2
zobaczyłem to ostrzeżenie: <console>:9: warning: fruitless type test: a value of type List[Int] cannot also be a List[String] (but still might match its erasure) case list: List[String] => println("a list of strings?") ^
uważam, że twoje pytanie i odpowiedź są bardzo pomocne, ale nie jestem pewien, czy to zaktualizowane ostrzeżenie jest przydatne dla czytelników.