我有一个List[(Int,String,Double)]
需要转换为的查询结果Map[String,String]
(用于在 html 选择列表中显示)
我被黑的解决方案是:
val prices = (dao.getPricing flatMap {
case(id, label, fee) =>
Map(id.toString -> (label+" $"+fee))
}).toMap
必须有更好的方法来实现同样的目标......
我有一个List[(Int,String,Double)]
需要转换为的查询结果Map[String,String]
(用于在 html 选择列表中显示)
我被黑的解决方案是:
val prices = (dao.getPricing flatMap {
case(id, label, fee) =>
Map(id.toString -> (label+" $"+fee))
}).toMap
必须有更好的方法来实现同样的目标......
这个怎么样?
val prices: Map[String, String] =
dao.getPricing.map {
case (id, label, fee) => (id.toString -> (label + " $" + fee))
}(collection.breakOut)
该方法collection.breakOut
提供了一个CanBuildFrom
实例,可确保即使您从 a 映射,由于类型注释, List
aMap
也会被重建,并避免创建中间集合。
更简洁一点:
val prices =
dao.getPricing.map { case (id, label, fee) => ( id.toString, label+" $"+fee)} toMap
较短的替代方案:
val prices =
dao.getPricing.map { p => ( p._1.toString, p._2+" $"+p._3)} toMap