原文: http://zetcode.com/kotlin/lists/

Kotlin 列表教程显示了如何在 Kotlin 中使用列表。 列表是元素的一般有序集合。

Kotlin 区分只读列表和可变列表。 用listOf()创建只读列表,用mutableListOf()创建可变列表。

Kotlin listOf()

listOf()方法在 Kotlin 中创建一个新的只读列表。

KotlinListOf.kt

  1. package com.zetcode
  2. fun main() {
  3. val words = listOf("pen", "cup", "dog", "spectacles")
  4. println("The list contains ${words.size} elements.")
  5. }

该示例使用listOf()创建新的单词列表。 列表的大小由size属性确定。

Kotlin List基础

在下一个示例中,我们有一个简单的 Kotlin List示例。

KotlinListBasic.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = listOf(11, 5, 3, 8, 1, 9, 6, 2)
  4. val len = nums.count()
  5. val max = nums.max()
  6. val min = nums.min()
  7. val sum = nums.sum()
  8. val avg = nums.average()
  9. val msg = """
  10. max: $max, min: $min,
  11. count: $len, sum: $sum,
  12. average: $avg
  13. """
  14. println(msg.trimIndent())
  15. }

该示例创建一个数字列表并计算一些统计信息。

  1. val nums = listOf(11, 5, 3, 8, 1, 9, 6, 2)

使用listOf()函数创建 Kotlin 只读列表。

  1. val len = nums.count()
  2. val max = nums.max()
  3. val min = nums.min()
  4. val sum = nums.sum()
  5. val avg = nums.average()

我们计算值的数量,最大值,最小值,总和和平均值。

  1. max: 11, min: 1,
  2. count: 8, sum: 45,
  3. average: 5.625

这是输出。

Kotlin 列表索引

列表的每个元素都有一个索引。 Kotlin 列表索引从零开始。 最后一个元素的索引为len-1

KotlinListIndex.kt

  1. package com.zetcode
  2. fun main() {
  3. val words = listOf("pen", "cup", "dog", "person",
  4. "cement", "coal", "spectacles", "cup", "bread")
  5. val w1 = words.get(0)
  6. println(w1)
  7. val w2 = words[0]
  8. println(w2)
  9. val i1 = words.indexOf("cup")
  10. println("The first index of cup is $i1")
  11. val i2 = words.lastIndexOf("cup")
  12. println("The last index of cup is $i2")
  13. val i3 = words.lastIndex
  14. println("The last index of the list is $i3")
  15. }

该示例介绍了 Kotlin List索引操作。

  1. val w1 = words.get(0)

使用get()方法检索元素。 该方法将要检索的元素的索引作为参数。

  1. val w2 = words[0]

我们还可以使用经典的 C 索引操作。

  1. val i1 = words.indexOf("cup")

indexOf()返回列表中单词首次出现的索引。

  1. val i2 = words.lastIndexOf("cup")

lastIndexOf()返回列表中单词最后一次出现的索引。

  1. val i3 = words.lastIndex

lastIndex属性返回列表中最后一项的索引;如果列表为空,则返回-1

  1. pen
  2. pen
  3. The first index of cup is 1
  4. The last index of cup is 7
  5. The last index of the list is 8

这是输出。

Kotlin 列表计数

count()方法返回列表中的元素数。

KotlinListCount.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = listOf(4, 5, 3, 2, 1, -1, 7, 6, -8, 9, -12)
  4. val len = nums.count()
  5. println("There are $len elements")
  6. val size = nums.size
  7. println("The size of the list is $size")
  8. val n1 = nums.count { e -> e < 0 }
  9. println("There are $n1 negative values")
  10. val n2 = nums.count { e -> e % 2 == 0 }
  11. println("There are $n2 even values")
  12. }

该示例返回列表中值的数量,负值的数量和偶数的数量。

  1. val len = nums.count()
  2. println("There are $len elements")
  3. val size = nums.size
  4. println("The size of the list is $size")

我们可以使用count()方法或size属性来确定列表中的元素数量。

  1. val n1 = nums.count { e -> e < 0 }

count()可以将谓词函数作为参数。 在我们的情况下,它对于小于 0 的值返回true

  1. val n2 = nums.count { e -> e % 2 == 0 }

我们获得列表中的偶数个数。

  1. There are 11 elements
  2. The size of the list is 11
  3. There are 3 negative values
  4. There are 5 even values

这是输出。

Kotlin 列表第一个和最后一个元素

我们有方法来获取列表的第一个和最后一个元素。

KotlinListFirstLast.kt

  1. package com.zetcode
  2. fun main() {
  3. val words = listOf("pen", "cup", "dog", "person",
  4. "cement", "coal", "spectacles")
  5. val w1 = words.first()
  6. println(w1)
  7. val w2 = words.last()
  8. println(w2)
  9. val w3 = words.findLast { w -> w.startsWith('c') }
  10. println(w3)
  11. val w4 = words.first { w -> w.startsWith('c') }
  12. println(w4)
  13. }

该示例创建一个单词列表。 我们得到列表的第一个和最后一个元素。

  1. val w1 = words.first()

我们用first()获得第一个元素。

  1. val w2 = words.last()

我们用last()获得最后一个元素。

  1. val w3 = words.findLast { w -> w.startsWith('c') }

我们以findLast()检索以’c’开头的列表的最后一个元素。

  1. val w4 = words.first { w -> w.startsWith('c') }

我们以first()检索以’c’开头的列表的第一个元素。

  1. pen
  2. spectacles
  3. coal
  4. cup

这是输出。

Kotlin 列表迭代

列表迭代或列表循环是一个遍历列表元素的过程。

KotlinListIterate.kt

  1. package com.zetcode
  2. fun main() {
  3. val words = listOf("pen", "cup", "dog", "person",
  4. "cement", "coal", "spectacles")
  5. words.forEach { e -> print("$e ") }
  6. println()
  7. for (word in words) {
  8. print("$word ")
  9. }
  10. println()
  11. for (i in 0 until words.size) {
  12. print("${words[i]} ")
  13. }
  14. println()
  15. words.forEachIndexed({i, e -> println("words[$i] = $e")})
  16. val it: ListIterator<String> = words.listIterator()
  17. while (it.hasNext()) {
  18. val e = it.next()
  19. print("$e ")
  20. }
  21. println()
  22. }

该示例显示了 Kotlin 中遍历列表的五种方法。

  1. words.forEach { e -> print("$e ") }

forEach()对每个列表元素执行给定的操作。 我们为它传递了一个匿名函数,该函数将打印当前元素。

  1. for (word in words) {
  2. print("$word ")
  3. }

我们用for循环列表。 for循环逐个遍历列表。 在每个循环中,word变量指向列表中的下一个元素。

  1. for (i in 0 until words.size) {
  2. print("${words[i]} ")
  3. }

另一种for循环利用列表的大小。 until关键字创建一系列列表索引。

  1. words.forEachIndexed({i, e -> println("words[$i] = $e")})

使用forEachIndexed()方法,我们遍历具有每次迭代可用索引和值的列表。

  1. val it: ListIterator<String> = words.listIterator()
  2. while (it.hasNext()) {
  3. val e = it.next()
  4. print("$e ")
  5. }

最后一种方法是使用ListIteratorwhile循环。

  1. pen cup dog person cement coal spectacles
  2. pen cup dog person cement coal spectacles
  3. pen cup dog person cement coal spectacles
  4. words[0] = pen
  5. words[1] = cup
  6. words[2] = dog
  7. words[3] = person
  8. words[4] = cement
  9. words[5] = coal
  10. words[6] = spectacles
  11. pen cup dog person cement coal spectacles

这是输出。

Kotlin 列表排序

以下示例显示如何在 Kotlin 中对列表值进行排序。 由于使用listOf()创建的列表是只读的,因此这些方法不会更改列表,但会返回新的修改后的列表。

Car.kt

  1. package com.zetcode.bean
  2. data class Car(var name: String, var price: Int)

这是一个Car bean。

KotlinListSorting.kt

  1. package com.zetcode
  2. import com.zetcode.bean.Car
  3. fun main() {
  4. val nums = listOf(11, 5, 3, 8, 1, 9, 6, 2)
  5. val sortAsc = nums.sorted()
  6. println(sortAsc)
  7. val sortDesc = nums.sortedDescending()
  8. println(sortDesc)
  9. val revNums = nums.reversed()
  10. println(revNums)
  11. val cars = listOf(Car("Mazda", 6300), Car("Toyota", 12400),
  12. Car("Skoda", 5670), Car("Mercedes", 18600))
  13. val res = cars.sortedBy { car -> car.name }
  14. res.forEach { e -> println(e) }
  15. println("*************")
  16. val res2 = cars.sortedByDescending { car -> car.name }
  17. res2.forEach { e -> println(e) }
  18. }

该示例按升序和降序对列表值进行排序,反转列表元素,并按名称对汽车对象进行排序。

  1. val sortAsc = nums.sorted()

sorted()方法返回根据自然排序顺序排序的所有元素的列表。

  1. val sortDesc = nums.sortedDescending()

sortedDescending()方法返回所有元素按照其自然排序顺序降序排列的列表。

  1. val revNums = nums.reversed()

reversed()方法返回具有相反顺序元素的列表。

  1. val cars = listOf(Car("Mazda", 6300), Car("Toyota", 12400),
  2. Car("Skoda", 5670), Car("Mercedes", 18600))

我们创建汽车对象列表。 这些对象可以按名称或价格排序。

  1. val res = cars.sortedBy { car -> car.name }

使用sortedBy(),我们按名称对汽车进行升序排序。

  1. val res2 = cars.sortedByDescending { car -> car.name }

使用sortedByDescending(),我们按名称对汽车进行降序排序。

  1. [1, 2, 3, 5, 6, 8, 9, 11]
  2. [11, 9, 8, 6, 5, 3, 2, 1]
  3. [2, 6, 9, 1, 8, 3, 5, 11]
  4. Car(name=Mazda, price=6300)
  5. Car(name=Mercedes, price=18600)
  6. Car(name=Skoda, price=5670)
  7. Car(name=Toyota, price=12400)
  8. *************
  9. Car(name=Toyota, price=12400)
  10. Car(name=Skoda, price=5670)
  11. Car(name=Mercedes, price=18600)
  12. Car(name=Mazda, price=6300)

这是输出。

Kotlin 列表包含

使用contains()方法,我们可以检查列表是否包含指定的元素。

KotlinListContains.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = listOf(4, 5, 3, 2, 1, -1, 7, 6, -8, 9, -12)
  4. val r = nums.contains(4)
  5. if (r) println("The list contains 4")
  6. else println("The list does not contain 4")
  7. val r2 = nums.containsAll(listOf(1, -1))
  8. if (r2) println("The list contains -1 and 1")
  9. else println("The list does not contain -1 and 1")
  10. }

可以检查列表是否包含一个或多个元素。

  1. val r = nums.contains(4)

在这里,我们检查nums列表是否包含 4。该方法返回布尔值。

  1. val r2 = nums.containsAll(listOf(1, -1))

此行检查列表是否包含两个值:1 和 -1。

  1. The list contains 4
  2. The list contains -1 and 1

这是输出。

Kotlin 可变列表

使用mutableListOf(),我们可以在 Kotlin 中创建可变列表。 我们可以在可变列表中添加新元素,删除元素和修改元素。

KotlinListMutable.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = mutableListOf(3, 4, 5)
  4. nums.add(6)
  5. nums.add(7)
  6. nums.addAll(listOf(8, 9, 10))
  7. nums.add(0, 0)
  8. nums.add(1, 1)
  9. nums.add(2, 2)
  10. println(nums)
  11. nums.shuffle()
  12. println(nums)
  13. nums.sort()
  14. println(nums)
  15. nums.removeAt(0)
  16. nums.remove(10)
  17. println(nums)
  18. nums.replaceAll { e -> e * 2 }
  19. println(nums)
  20. nums.retainAll(listOf(12, 14, 16, 18))
  21. println(nums)
  22. nums.fill(0)
  23. println(nums)
  24. nums.set(0, 22)
  25. println(nums[0])
  26. nums.clear()
  27. if (nums.isEmpty()) println("The list is empty")
  28. else println("The list is not epty")
  29. }

该示例创建一个可变列表并提供其几种方法。

  1. val nums = mutableListOf(3, 4, 5)

我们创建一个包含三个整数元素的可变列表。

  1. nums.add(6)
  2. nums.add(7)
  3. nums.addAll(listOf(8, 9, 10))

add()在列表末尾添加一个新元素。 addAll()在列表的末尾添加了多个元素。

  1. nums.shuffle()

shuffle()方法随机重新排列列表元素。 改组发生在原地; 即原始列表已修改。

  1. nums.sort()

元素按其自然升序排序。

  1. nums.removeAt(0)
  2. nums.remove(10)

removeAt()方法删除指定索引处的元素。 remove()方法从列表中删除第一次出现的指定元素。

  1. nums.replaceAll { e -> e * 2 }

replaceAll()方法使用给定函数修改列表的所有元素。 在我们的例子中,我们创建一个匿名函数,将每个元素乘以 2。

  1. nums.retainAll(listOf(12, 14, 16, 18))

retainAll()方法仅保留参数中指定的元素; 其他被删除。

  1. nums.fill(0)

fill()方法将所有元素替换为给定值。

  1. nums.set(0, 22)

set()方法用给定元素替换列表中指定位置的元素。

  1. nums.clear()

clear()方法从列表中删除所有元素。

  1. if (nums.isEmpty()) println("The list is empty")
  2. else println("The list is not epty")

使用isEmpty()方法,我们检查列表是否为空。

  1. [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
  2. [2, 3, 6, 1, 8, 0, 7, 5, 10, 9, 4]
  3. [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
  4. [1, 2, 3, 4, 5, 6, 7, 8, 9]
  5. [2, 4, 6, 8, 10, 12, 14, 16, 18]
  6. [12, 14, 16, 18]
  7. [0, 0, 0, 0]
  8. 22
  9. The list is empty

这是输出。

Kotlin 列表切片

切片是列表的一部分。 可以使用slice()方法创建切片。 该方法获取要拾取的元素的索引。

KotlinListSlice.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = listOf(1, 2, 3, 4, 5, 6)
  4. val nums2 = nums.slice(1..3)
  5. println(nums2)
  6. val nums3 = nums.slice(listOf(3, 4, 5))
  7. println(nums3)
  8. }

在示例中,我们创建一个整数列表。 从列表中,我们产生两个切片。

  1. val nums2 = nums.slice(1..3)

我们使用范围运算符创建包含索引为 1、2 和 3 的元素的列表切片。所有索引都包括在内。

  1. val nums3 = nums.slice(listOf(3, 4, 5))

在第二个示例中,我们显式提供索引列表。

  1. [2, 3, 4]
  2. [4, 5, 6]

这是输出。

Kotlin 列表上限

下面的示例处理查找列表的最大值。

Car.kt

  1. package com.zetcode.bean
  2. data class Car(var name: String, var price: Int)

这是一个Car bean。

KotlinListMax.kt

  1. package com.zetcode
  2. import com.zetcode.bean.Car
  3. fun main() {
  4. val nums = listOf(11, 5, 23, 8, 1, 9, 6, 2)
  5. println(nums.max())
  6. val cars = listOf(Car("Mazda", 6300), Car("Toyota", 12400),
  7. Car("Skoda", 5670), Car("Mercedes", 18600))
  8. val car = cars.maxBy { car -> car.price }
  9. println("The max price is ${car?.price} of ${car?.name}")
  10. }

该示例查找整数列表和汽车对象列表的最大值。

  1. val nums = listOf(11, 5, 23, 8, 1, 9, 6, 2)
  2. println(nums.max())

可以使用max()轻松找到整数列表的最大值。

  1. val cars = listOf(Car("Mazda", 6300), Car("Toyota", 12400),
  2. Car("Skoda", 5670), Car("Mercedes", 18600))
  3. val car = cars.maxBy { car -> car.price }
  4. println("The max price is ${car?.price} of ${car?.name}")

处理对象时,需要指定用于查找最大值的属性。 maxBy()方法具有选择器函数,用于选择汽车的price属性。

  1. 23
  2. The max price is 18600 of Mercedes

这是输出。

Kotlin 列表过滤器

过滤是一种操作,只有满足某些条件的元素才能通过。

Car.kt

  1. package com.zetcode.bean
  2. data class Car(var name: String, var price: Int)

这是一个Car bean。

KotlinListFilter.kt

  1. package com.zetcode
  2. import com.zetcode.bean.Car
  3. fun main(args: Array<String>) {
  4. val words = listOf("pen", "cup", "dog", "person",
  5. "cement", "coal", "spectacles")
  6. val words2 = words.filter { e -> e.length == 3 }
  7. words2.forEach { e -> print("$e ") }
  8. println()
  9. val words3 = words.filterNot { e -> e.length == 3 }
  10. words3.forEach { e -> print("$e ") }
  11. println()
  12. val cars = listOf(Car("Mazda", 6300), Car("Toyota", 12400),
  13. Car("Skoda", 5670), Car("Mercedes", 18600))
  14. val res = cars.filter { car -> car.price > 10000 }
  15. res.forEach { e -> println(e) }
  16. }

该示例展示了对 Kotlin 列表的过滤操作。

  1. val words2 = words.filter { e -> e.length == 3 }

filter()方法采用谓词函数作为参数。 谓词给出了元素必须满足的条件。 我们过滤掉长度等于 3 的单词。

  1. val words3 = words.filterNot { e -> e.length == 3 }

filterNot()的作用相反:它允许通过不符合给定条件的元素。

  1. val cars = listOf(Car("Mazda", 6300), Car("Toyota", 12400),
  2. Car("Skoda", 5670), Car("Mercedes", 18600))
  3. val res = cars.filter { car -> car.price > 10000 }

这些行过滤掉价格大于 10000 的汽车对象。

  1. pen cup dog
  2. person cement coal spectacles
  3. Car(name=Toyota, price=12400)
  4. Car(name=Mercedes, price=18600)

这是输出。

Kotlin 列表映射

映射操作通过在列表的每个元素上应用转换函数来返回修改后的列表。

KotlinListMap.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = listOf(1, 2, 3, 4, 5, 6)
  4. val nums2 = nums.map { e -> e * 2 }
  5. println(nums2)
  6. }

我们有一个整数列表。 使用map()方法,我们将每个列表元素乘以 2。

  1. [2, 4, 6, 8, 10, 12]

这是示例输出。

Kotlin 列表归约

归约是将列表值聚合为单个值的终端操作。 reduce()方法对一个累加器和每个元素(从左到右)应用一个函数,以将其减小为单个值。

KotlinListReduce.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = listOf(4, 5, 3, 2, 1, 7, 6, 8, 9)
  4. val sum = nums.reduce { total, next -> total + next }
  5. println(sum)
  6. val colours = listOf("red", "green", "white", "blue", "black")
  7. val res = colours.reduceRight { next, total -> "$total-$next" }
  8. println(res)
  9. }

在示例中,我们对整数和字符串列表使用reduce操作。

  1. val sum = nums.reduce { total, next -> total + next }

我们计算值的总和。 total是累加器,next是列表中的下一个值。

  1. val res = colours.reduceRight { next, total -> "$total-$next" }

reduceRight()从最后一个元素开始累加值,并从右到左对每个元素和当前累加器值进行运算。

  1. 45
  2. black-blue-white-green-red

这是输出。

列表折叠

折叠操作类似于缩小操作。 折叠是将列表值聚合为单个值的终端操作。 区别在于折叠从初始值开始。

KotlinListFold.kt

  1. package com.zetcode
  2. fun main() {
  3. val expenses = listOf(20, 40, 80, 15, 25)
  4. val cash = 550
  5. val res = expenses.fold(cash) {total, next -> total - next}
  6. println(res)
  7. }

我们有一份支出列表。 这些费用适用于初始可用现金金额。

  1. val res = expenses.fold(cash) {total, next -> total - next}

利用fold(),我们从cash推算出所有费用,并返回剩余值。

  1. 370

这是我们减去可用金额的所有费用后的余额。

Kotlin 列表分块

有时,在进行归约时,我们需要使用列表中的更多元素。 我们可以使用chunked()方法将列表分成列表列表。

KotlinListChunked.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = listOf(1, 2, 3, 4, 5, 6)
  4. val res = nums.chunked(2).fold(0) { total, next -> total + next[0] * next[1] }
  5. println(res)
  6. }

在示例中,我们有六个值的列表。 我们要实现以下操作:1*2 + 3*4 + 5*6。 为此,我们需要将列表分成两个值的块。

  1. val res = nums.chunked(2).fold(0) { total, next -> total + next[0] * next[1] }

我们将列表分为两个元素的列表,然后对其进行折叠。 next是我们可以在其中使用索引操作的列表。

  1. 44

这是示例的输出。

Kotlin 列表分区

分区操作将原始集合拆分为成对的列表。 第一个列表包含其指定谓词产生true的元素,而第二个列表包含其谓词产生false的元素。

KotlinListPartition.kt

  1. package com.zetcode
  2. fun main(args: Array<String>) {
  3. val nums = listOf(4, -5, 3, 2, -1, 7, -6, 8, 9)
  4. val (nums2, nums3) = nums.partition { e -> e < 0 }
  5. println(nums2)
  6. println(nums3)
  7. }

我们有一个整数列表。 使用partition()方法,我们将列表分为两个子列表; 一个包含负值,另一个包含正值。

  1. val (nums2, nums3) = nums.partition { e -> e < 0 }

使用解构声明,我们一次性将列表分为两部分。

  1. [-5, -1, -6]
  2. [4, 3, 2, 7, 8, 9]

这是输出。

Kotlin 列表分组

groupBy()方法通过将给定选择器函数返回的键应用于原始列表的元素进行分组,这些键应用于每个元素。 它返回一个映射,其中每个组键都与对应元素的列表相关联。

KotlinListGroupBy.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = listOf(1, 2, 3, 4, 5, 6, 7, 8)
  4. val res = nums.groupBy { if (it % 2 == 0) "even" else "odd" }
  5. println(res)
  6. val words = listOf("as", "pen", "cup", "doll", "my", "dog", "spectacles")
  7. val res2 = words.groupBy { it.length }
  8. println(res2)
  9. }

该示例显示了如何使用groupBy()方法。

  1. val nums = listOf(1, 2, 3, 4, 5, 6, 7, 8)
  2. val res = nums.groupBy { if (it % 2 == 0) "even" else "odd" }
  3. println(res)

这些行创建了一个映射,该映射具有两个键:"even""odd""even"指向偶数值列表,"odd"指向奇数值列表。

  1. val words = listOf("as", "pen", "cup", "doll", "my", "dog", "spectacles")
  2. val res2 = words.groupBy { it.length }

在这里,我们创建一个带有整数键的映射。 每个关键字将具有一定长度的单词分组。

  1. {odd=[1, 3, 5, 7], even=[2, 4, 6, 8]}
  2. {2=[as, my], 3=[pen, cup, dog], 4=[doll], 10=[spectacles]}

这是输出。

Kotlin 列表any()

如果至少一个元素与给定的谓词函数匹配,则any()方法返回true

KotlinListAny.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = listOf(4, 5, 3, 2, -1, 7, 6, 8, 9)
  4. val r = nums.any { e -> e > 10 }
  5. if (r) println("There is a value greater than ten")
  6. else println("There is no value greater than ten")
  7. val r2 = nums.any { e -> e < 0 }
  8. if (r2) println("There is a negative value")
  9. else println("There is no negative value")
  10. }

该示例显示any()的用法。

  1. val r2 = nums.any { e -> e < 0 }

在这里,我们检查列表中是否至少包含一个负值。 该方法返回一个布尔值。

Kotlin 列表all()

如果所有元素都满足给定的谓词函数,则all()返回true

KotlinListAll.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = listOf(4, 5, 3, 2, -1, 7, 6, 8, 9)
  4. val nums2 = listOf(-3, -4, -2, -5, -7, -8)
  5. // testing for positive only values
  6. val r = nums.all { e -> e > 0 }
  7. if (r) println("nums list contains only positive values")
  8. else println("nums list does not contain only positive values")
  9. // testing for negative only values
  10. val r2 = nums2.all { e -> e < 0 }
  11. if (r2) println("nums2 list contains only negative values")
  12. else println("nums2 list does not contain only negative values")
  13. }

该示例显示all()的用法。

  1. // testing for positive only values
  2. val r = nums.all { e -> e > 0 }

在这里,我们测试nums列表是否仅包含正值。

Kotlin 列表删除

通过放置操作,我们从列表中排除了一些元素。

KotlinListDrop.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = listOf(4, 5, 3, 2, 1, -1, 7, 6, -8, 9, -12)
  4. val nums2 = nums.drop(3)
  5. println(nums2)
  6. val nums3 = nums.dropLast(3)
  7. println(nums3)
  8. val nums4 = nums.sorted().dropWhile { e -> e < 0 }
  9. println(nums4)
  10. val nums5 = nums.sorted().dropLastWhile { e -> e > 0 }
  11. println(nums5)
  12. }

该示例显示了不同放置操作的用法。

  1. val nums2 = nums.drop(3)

使用drop()方法,我们排除了前三个元素。

  1. val nums3 = nums.dropLast(3)

使用dropLast()方法,我们排除了最后三个元素。

  1. val nums4 = nums.sorted().dropWhile { e -> e < 0 }

使用dropWhile()方法,我们排除了满足给定谓词函数的前 n 个元素。

  1. val nums5 = nums.sorted().dropLastWhile { e -> e > 0 }

使用dropLastWhile()方法,我们排除了满足给定谓词函数的最后 n 个元素。

  1. [2, 1, -1, 7, 6, -8, 9, -12]
  2. [4, 5, 3, 2, 1, -1, 7, 6]
  3. [1, 2, 3, 4, 5, 6, 7, 9]
  4. [-12, -8, -1]

这是输出。

Kotlin 列表提取

提取操作是放置操作的补充。 通过选择一些元素,take方法形成一个新列表。

KotlinListTake.kt

  1. package com.zetcode
  2. fun main() {
  3. val nums = listOf(4, 5, 3, 2, 1, -1, 7, 6, -8, 9, -12)
  4. val nums2 = nums.take(3)
  5. println(nums2)
  6. val nums3 = nums.takeLast(3)
  7. println(nums3)
  8. val nums4 = nums.sorted().take(3)
  9. println(nums4)
  10. val nums5 = nums.takeWhile { e -> e > 0 }
  11. println(nums5)
  12. val nums6 = nums.sortedDescending().takeWhile { e -> e > 0 }
  13. println(nums6)
  14. val nums7 = nums.takeIf { e -> e.contains(6) }
  15. println(nums7)
  16. }

该示例显示了各种take方法的用法。

  1. val nums2 = nums.take(3)

take()方法创建一个具有原始列表的前三个元素的新列表。

  1. val nums3 = nums.takeLast(3)

takeLast()方法将最后一个元素放入新列表中。

  1. val nums5 = nums.takeWhile { e -> e > 0 }

takeWhile()采用满足谓词函数的前 n 个元素。

  1. val nums7 = nums.takeIf { e -> e.contains(6) }

如果满足谓词函数中的条件,则takeIf()方法将使用列表中的所有元素。

  1. [4, 5, 3]
  2. [-8, 9, -12]
  3. [-12, -8, -1]
  4. [4, 5, 3, 2, 1]
  5. [9, 7, 6, 5, 4, 3, 2, 1]
  6. [4, 5, 3, 2, 1, -1, 7, 6, -8, 9, -12]

这是输出。

在本教程中,我们涵盖了 Kotlin 列表。 您可能也对相关教程感兴趣: Kotlin 设置教程Kotlin 数组教程Kotlin 映射教程或列出所有 Kotlin 教程