特牛网址导航

Scala中的Map和Set_scala中map、set的区别-CSDN博客

网友收藏
文章浏览阅读804次。Map和Set中常用的一些方法。var jetset = Set("one","two")jetset += "three"println(jetset.contains("four"))println(jetset.contains("three"))jetset.foreach(arg => println(arg))print(jetset.size)import scal_scala中map、set的区别