Scala 可变映射添加
我将可变 HashMap 与 MultiMap mixin 一起使用,并注意到 map.add
方法现已弃用:
val fieldTokenMap = new HashMap[String, scala.collection.mutable.Set[Int]] with MultiMap[String, Int]
// ...
fieldTokenMap add (token, docId)
我基本上将字符串或令牌映射到 id 列表。我是否应该以不同的方式在 Scala 中使用 Map 和 MultiMap?
谢谢。
I'm using a mutable HashMap with the MultiMap mixin and noticed that the map.add
method is now deprecated:
val fieldTokenMap = new HashMap[String, scala.collection.mutable.Set[Int]] with MultiMap[String, Int]
// ...
fieldTokenMap add (token, docId)
I'm basically mapping a string or token to a list of ids. Is there a different way I'm supposed to use the Map and MultiMap in Scala?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如弃用消息所述,请改用
addBinding
。As the deprecation message says, use
addBinding
instead.