有没有一种方便的方法来初始化Scala中的字符串列表?

时间:2013-01-31 19:15:02

标签: scala

在Perl我能做到

my @l = qw( str1 str2 str3 str4 )

在Ruby中

l = %w{ str1 str2 str3 str4 }

但是在Scala看起来我已经陷入了

val l = List( "str1", "str2", "str3", "str4" )

我真的需要所有", s吗?

1 个答案:

答案 0 :(得分:16)

你可以做到

implicit class StringList(val sc: StringContext) extends AnyVal {
  def qw(): List[String] = 
    sc.parts.flatMap(_.split(' '))(collection.breakOut)
}

qw"str1 str2 str3"

或通过隐式类:

implicit class StringList(val s: String) extends AnyVal {
  def qw: List[String] = s.split(' ').toList
}

"str1 str2 str3".qw

(两者都需要Scala 2.10,尽管第二个可以适用于Scala 2.9)