podane:Scala Mapa foreach
val m = Map[String, Int]("a" -> 1, "b" -> 2, "c" -> 3)
m.foreach((key: String, value: Int) => println(">>> key=" + key + ", value=" + value))
dlaczego kompilator skarżą
error: type mismatch
found : (String, Int) => Unit
required: (String, Int) => ?
Biorąc pod uwagę, że typy są wnioskowane, można po prostu zrobić: m.foreach (e => println (e._1 + "=" + e._2) – virtualeyes
Czy można wyświetlić cały typ? Istnieje wiele map , Obawiam się, który to jest. –