- Kotlin 教程
- Kotlin - 首页
- Kotlin - 概述
- Kotlin - 环境设置
- Kotlin - 架构
- Kotlin - 基本语法
- Kotlin - 注释
- Kotlin - 关键字
- Kotlin - 变量
- Kotlin - 数据类型
- Kotlin - 运算符
- Kotlin - 布尔值
- Kotlin - 字符串
- Kotlin - 数组
- Kotlin - 范围
- Kotlin - 函数
- Kotlin 控制流
- Kotlin - 控制流
- Kotlin - if...else 表达式
- Kotlin - when 表达式
- Kotlin - for 循环
- Kotlin - while 循环
- Kotlin - break 和 continue
- Kotlin 集合
- Kotlin - 集合
- Kotlin - 列表
- Kotlin - 集合
- Kotlin - 映射
- Kotlin 对象和类
- Kotlin - 类和对象
- Kotlin - 构造函数
- Kotlin - 继承
- Kotlin - 抽象类
- Kotlin - 接口
- Kotlin - 可见性控制
- Kotlin - 扩展
- Kotlin - 数据类
- Kotlin - 密封类
- Kotlin - 泛型
- Kotlin - 委托
- Kotlin - 解构声明
- Kotlin - 异常处理
- Kotlin 有用资源
- Kotlin - 快速指南
- Kotlin - 有用资源
- Kotlin - 讨论
Kotlin 数组 - dropWhile() 函数
Kotlin 数组 dropWhile() 函数用于获取列表,该列表包含除满足给定谓词或条件的最初 n 个元素之外的所有元素。
此函数采用小于 (<) 运算符,并删除从第一个元素到给定条件的所有元素。例如;dropWhile{it < 'x'} 删除 x 之前的所有元素。
语法
以下是 Kotlin 数组 dropWhile() 函数的语法:
fun <T> Array<out T>.dropWhile( predicate: (T) -> Boolean ): List<T>
参数
此函数接受谓词函数作为参数。此谓词函数表示需要从数组的起始索引中删除的元素数量。
返回值
此函数返回一个列表,其中包含删除后剩余的所有元素。
示例 1
以下是一个基本示例,用于演示 dropWhile() 函数的使用:
fun main(args: Array<String>) { val number: Array<Int> = arrayOf(1, 2, 3, 4, 5, 6, 7, 8) val after_dropWhile = number.dropWhile{it<5} println("list after dropped: $after_dropWhile") }
输出
执行上述代码后,我们将获得以下结果:
list after dropped: [5, 6, 7, 8]
示例 2
现在,让我们来看另一个示例。我们创建一个存储字符串的数组。然后,我们使用 dropWhile() 函数删除前 n 个元素,直到我们得到 "tutorix":
fun main(args: Array<String>) { val strings: Array<String> = arrayOf("hii", "Hello", "tutorix", "tutorialspoint") val after_dropWhile = strings.dropWhile{it<"tutorix"} println("list after dropped: $after_dropWhile") }
输出
执行上述代码后,我们将获得以下输出:
list after dropWhileped: [tutorix, tutorialspoint]
示例 3
下面的示例创建一个包含 26 个字符的数组。然后,我们使用 dropWhile() 删除前 n 个元素,直到我们得到 'm':
fun main(args: Array<String>) { // Create an array of characters from 'a' to 'z' val alphabet: Array<Char> = ('a'..'z').toList().toTypedArray() // Drop the first n elements from the array val after_Drop = alphabet.dropWhile{it<'m'} println("List after dropping the first n elements: $after_Drop") }
输出
上述代码将产生以下输出:
List after dropping the first n elements: [m, n, o, p, q, r, s, t, u, v, w, x, y, z]
kotlin_arrays.htm
广告