Problem
你想要从集合中提取一串连续的元素,通过指定开始和结束位置或者通过一个方法。
Solution
你可以利用一些集合方法来从有序集合中提取一串连续的元素。比如drop,dropWhile,head,headOption,init,last,lastOption,slice,tail,take,takeWhile。
给定一个有序集合:
scala> val x = (1 to 10).toArray
x: Array[Int] = Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
利用drop(n)方法,你可以提取集合除了前n个元素外,剩余的元素。
scala> x.drop(3)
res0: Array[Int] = Array(4, 5, 6, 7, 8, 9, 10)
利用dropWhile方法,会丢掉从集合开始一直到能满足你传给dropWhile方法的判断条件为true的所有元素。
scala> x.dropWhile(_ < 6)
res2: Array[Int] = Array(6, 7, 8, 9, 10)
dropRight(n)方法和drop很像,只不过它会丢掉集合右侧的n个元素。
scala> x.dropRight(3)
res4: Array[Int] = Array(1, 2, 3, 4, 5, 6, 7)
take(n)方法直接提取集合的前n个元素:
scala> x.take(4)
res5: Array[Int] = Array(1, 2, 3, 4)
takeWhile(p)方法提取从集合开始直到第一个不满足p的元素之前的元素:
scala> x.takeWhile(_ < 5)
res6: Array[Int] = Array(1, 2, 3, 4)
takeRight(n)方法提取有序集合从后向前的n个元素:
scala> x.takeRight(3)
res7: Array[Int] = Array(8, 9, 10)
slice(m,n)方法,会提取集合中第m个元素一直到第n-1个元素:
scala> val peeps = List("John", "Mary", "Jane", "Fred")
peeps: List[String] = List(John, Mary, Jane, Fred)
scala> peeps.slice(1,3)
res9: List[String] = List(Mary, Jane)
Even more methods
还有好多方法可以返回集合的部分连续元素,其中init和tail可以特别说一下,init返回集合除了最后一个元素之外的其他元素,tail返回出了
scala> val nums = (1 to 5).toArray
nums: Array[Int] = Array(1, 2, 3, 4, 5)
scala> nums.head
res10: Int = 1
scala> nums.headOption
res11: Option[Int] = Some(1)
scala> nums.init
res12: Array[Int] = Array(1, 2, 3, 4)
scala> nums.last
res13: Int = 5
scala> nums.lastOption
res16: Option[Int] = Some(5)
scala> nums.tail
res17: Array[Int] = Array(2, 3, 4, 5)
scala> nums.init
res18: Array[Int] = Array(1, 2, 3, 4)
来源:oschina
链接:https://my.oschina.net/u/2633112/blog/659530