web-dev-qa-db-ja.com

変換Scalaリストを別のタイプのリストに変換

単純型リストからより複雑なオブジェクト型リストを作成したい。たとえば、List[String] => List[MyType]

私は、マップベースのアプローチを使用して3つ行ってみました。ワイルドカードを使用した単純なマップ:

> case class telecom (name:String, longitude:Double, latitude:Double)
defined class telecom
> List("foo","bar").map(x:String => telecom(x,0,0)):List[telecom]
:1: error: ';' expected but ')' found.

ケースクラスコンストラクターを使用するパターンマッチングメソッド:

> def foo(c:List[String]){                                                                              
 | c match {                                                                                             
 | case tc:List[telecom] => tc.map(telecom(_,0,0)):List[telecom]; println("matched telephonecomapny");
 | case _ => println("matched nothing"); throw new ClassCastException(); }}
warning: there were unchecked warnings; re-run with -unchecked for details
foo: (c: List[String])Unit

>  foo(List("foo","bar"))
Java.lang.ClassCastException: Java.lang.String cannot be cast to usda.rd.broadband.model.DatabaseTables$TelephoneCompany
    at $anonfun$foo$1.apply(<console>:11)
    at scala.collection.TraversableLike$$anonfun$map$1.apply(TraversableLike.scala:206)
    at scala.collection.TraversableLike$$anonfun$map$1.apply(TraversableLike.scala:206)
    at scala.collection.LinearSeqOptimized$class.foreach(LinearSeqOptimized.scala:61)
    at scala.collection.immutable.List.foreach(List.scala:45)
    at scala.collection.TraversableLike$class.map(TraversableLike.scala:206)
    at scala.collection.immutable.List.map(List.scala:45)
    at .foo(<console>:11)
    at .<init>(<console>:11)
    at .<clinit>(<console>)
    at RequestResult$.<init>(<console>:9)
    at RequestResult$.<clinit>(<console>)
    at RequestResult$scala_repl_result(<console...

そしてより単純なパターンマッチング方法:

> def bar(c:List[String]){
 | c match {
 | case tc:List[telecom] => tc 
 | case _ => println("matched nothing")}}
 warning: there were unchecked warnings; re-run with -unchecked for details
 foo: (c: List[String])Unit
> val r = bar(List("foo","bar"))
t: Unit = ()
28
Noel

最初の試みはまったく問題ありません。ラムダ関数の引数を括弧で囲むのを忘れただけです。の代わりに:

List("foo","bar").map(x:String => telecom(x,0,0)):List[telecom]

あなたは使うべきです:

List("foo","bar").map( (x:String) => telecom(x,0,0)):List[telecom]

またはより単純:

List("foo","bar").map( x => telecom(x,0,0))
37
paradigmatic

ワンアップマンシップの利益のために、私はそれをさらに減らすことができると言わなければなりません

List("foo","bar").map(telecom(_,0,0))
26

またはあなたはそれを作ることができます:

List("foo","bar").map(x => telecom(x,0,0))
2
dvigal