从 List 中获取前 n 个元素

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/24951953/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-11 02:10:11  来源:igfitidea点击:

Get first n elements from List

listscalacollectionsscala-collections

提问by john smith

I have a List

我有一个 List

val family=List("1","2","11","12","21","22","31","33","41","44","51","55")

i want to take its first n elements but the problem is that parentssize is not fixed.

我想取它的前 n 个元素,但问题是parents大小不固定。

val familliar=List("1","2","11") //n=3

回答by Ende Neu

You can use take

您可以使用 take

scala> val list = List(1,2,3,4,5,6,7,8,9)
list: List[Int] = List(1, 2, 3, 4, 5, 6, 7, 8, 9)

scala> list.take(3)
res0: List[Int] = List(1, 2, 3)

回答by Xiaohe Dong

List(1,2,3).take(100) //List(1,2,3)

The signature of take will compare the argument with index, so the incremental index will never more than argument

take 的签名会将参数与索引进行比较,因此增量索引永远不会超过参数

The signature of take

采取的签名

override def take(n: Int): List[A] = {
  val b = new ListBuffer[A]
  var i = 0
  var these = this
  while (!these.isEmpty && i < n) {
    i += 1
    b += these.head
    these = these.tail
  }
  if (these.isEmpty) this
  else b.toList
}

回答by Jean Logeart

Use take:

使用take

val familliar = family.take(3)