码迷,mamicode.com
首页 > 其他好文 > 详细

Scala中的Map和Set

时间:2014-11-26 11:26:57      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:map   scala   

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 scala.collection.mutable.Map
val treasureMap = Map[Int,String]()
treasureMap +=(1->"one")
treasureMap +=(2->"two")
treasureMap +=(3->"three")
print(treasureMap(1))


Scala中的Map和Set

标签:map   scala   

原文地址:http://blog.csdn.net/u011740475/article/details/41510921

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!