4

我有一个List[(Int,String,Double)]需要转换为的查询结果Map[String,String](用于在 html 选择列表中显示)

我被黑的解决方案是:

val prices = (dao.getPricing flatMap {
  case(id, label, fee) =>
    Map(id.toString -> (label+" $"+fee))
  }).toMap

必须有更好的方法来实现同样的目标......

4

2 回答 2

9

这个怎么样?

val prices: Map[String, String] =
  dao.getPricing.map {
    case (id, label, fee) => (id.toString -> (label + " $" + fee))
  }(collection.breakOut)

该方法collection.breakOut提供了一个CanBuildFrom实例,可确保即使您从 a 映射,由于类型注释, ListaMap也会被重建,并避免创建中间集合。

于 2012-05-28T13:29:52.703 回答
8

更简洁一点:

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
于 2012-05-28T13:35:20.777 回答