Scala:保存字符串对的好方法
对于一个小集合来说,保存不一定是键值(可能有重复键)的字符串对的巧妙方法是什么? List[List[String]] 显然可以工作,但看起来很脏。
干杯
帕尔萨
What is a neat way to hold pairs of strings which are not necessarily key-values (might have duplicate keys), for a small collection? List[List[String]] works obviously but looks dirty.
Cheers
Parsa
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
List[(String,String)]
是标准解决方案:List[(String,String)]
is the standard solution:元组是表示对的理想数据结构。
因此,请使用
(String, String)
元组列表。Tuples are the ideal data structure to represent pairs.
So use a list of
(String, String)
tuples.