scala使用Range来填充一个集合

来源:互联网 发布:java 项目命名规范 编辑:程序博客网 时间:2024/06/18 07:30

Problem

    你想要使用Range来填充一个List,Array,Vector或者其他的sequence。

Solution

    对于支持range方法的集合你可以直接调用range方法,或者创建一个Range对象然后把它转化为一个目标集合。

    在第一个解决方案中,我们调用了伴生类的range方法,比如Array,List,Vector,ArrayBuffer等等:

scala> Array.range(110)res83: Array[Int] = Array(123456789)scala> List.range(110)res84: List[Int] = List(123456789)scala> Vector.range(0102)res85: scala.collection.immutable.Vector[Int] = Vector(02468)

    对于一些集合,比如List,Array,你也可以创建一个Range对象,然后把它转化为相应的目标集合:

scala> val a = (1 to 10).toArraya: Array[Int] = Array(12345678910)scala> val l = (1 to 10by 2 toListwarning: there were 1 feature warning(s); re-run with -feature for detailsl: List[Int] = List(13579)scala> val l = (1 to 10).by(2).toListl: List[Int] = List(13579)

    我们来看看那些集合可以由Range直接转化的:

def toArray: Array[A]def toBuffer[A1 >: Int]: Buffer[A1]def toIndexedSeq: IndexedSeq[Int]def toIterator: Iterator[Int]def toList: scala.List[Int]def toMap[T, U]: collection.Map[T, U]def toParArray: ParArray[Int]def toSet[B >: Int]: Set[B]def toStream: Stream[Int]def toTraversable: collection.Traversable[Int]def toVector: scala.Vector[Int]

    使用这种方案我们可以把Range转为Set等,不支持range方法的集合类:

scala> val set = Set.range(05)<console>:8: error: value range is not a member of object scala.collection.immutable.Set       val set = Set.range(05)                     ^scala> val set = Range(05).toSetset: scala.collection.immutable.Set[Int] = Set(01234)scala> val set = (0 to 10 by 2).toSetset: scala.collection.immutable.Set[Int] = Set(0106284)

    你也可以创建一个字符序列:

scala> val letters = ('a' to 'f').toListletters: List[Char] = List(a, b, c, d, e, f)scala> val letters = ('a' to 'f' by 2).toListletters: List[Char] = List(a, c, e)

    Range还能用于for循环:

scala> for(i <- 0 until 10 by 2) println(i)02468

Discussion

    通过对Range使用map方法,你可以创建出了Int,char之外,其他元素类型的集合

scala> val l = (1 to 3).map(_ * 2.0).toListl: List[Double] = List(2.04.06.0)

    使用同样的方案,你可以创建二元祖集合:

scala> val t = (1 to 5).map(e => (e, e*2))t: scala.collection.immutable.IndexedSeq[(Int, Int)] = Vector((1,2), (2,4), (3,6), (4,8), (5,10))

    二元祖集合很容易转换为Map:

scala> val map = t.toMapmap: scala.collection.immutable.Map[Int,Int] = Map(5 -> 10, 1 -> 2, 2 -> 4, 3 -> 6, 4 -> 8)
原创粉丝点击