0

我正在使用 Scala 将列表列表转换为自定义对象“点”列表

class Point(val x: Int, val y: Int) {
   var cX: Int = x
   var cY: Int = y
  }  

在这种情况下我应该使用 Foreach 还是应该使用 Map 或 foreach

def list_To_Point(_listOfPoints :List[List[String]]) : List[Point] = { 

    var elem = 
    lazy val _list:  List[Point] = _listOfPoints.map(p=> new Point(p[0],p[1])
      _list
  }   

我无法弄清楚问题到底出在哪里?

4

2 回答 2

4
 def listToPoint(l:List[List[String]]):List[Point] = 
     l.collect({case x::y::Nil => new Point(x.toInt,y.toInt)})

但是你真的不应该使用 List[String] 来表示基本上是什么(Int,Int)……</p>

于 2013-11-04T20:10:51.707 回答
1

丑陋的地狱和未经测试,但它应该工作(请考虑使你的结构不可变):

case class Point(x:Int,y:Int) 




object Point {


  def listToPoint(listOfPoints:List[List[String]]):List[Point] =
    listOfPoints.map(p => new Point(p(0).toInt,p(1).toInt))
}
于 2013-11-04T20:10:11.833 回答