This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
wanglihui-ip-learning-graph/ip-learning/src/test/scala/cn/ac/iie/TestMap.scala
2020-06-28 18:27:48 +08:00

12 lines
192 B
Scala

package cn.ac.iie
object TestMap {
def main(args: Array[String]): Unit = {
var mapTest: Map[String, Int] = Map[String,Int]()
mapTest += ("1" -> 1)
println(mapTest.size)
}
}