MyMap = scala.collection.mutable.Map[List[String], Int]()
我必须在MyMap中匹配字符串,并获取相应Int的值。字符串列表代表我的设备感兴趣的主题,int是设备的ID。
答案 0 :(得分:1)
为什么不使用过滤器,它与find相同,但返回满足谓词的所有元素
myMap.filter(_._1.contains("target")).map(_._2)
甚至
myMap.filter(_._1.contains("target")).values