- 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 数组 - component4() 函数
Kotlin 数组 component4() 函数检索数组对象的第 4 个元素,即索引为 3 的值。如果数组大小小于 4 或为空,则此函数会抛出 IndexOutOfBoundsException 异常。
语法
以下是 Kotlin 数组 component4() 函数的语法:
operator fun <T> List<T>.component4(): T
参数
此函数不接受任何参数。
返回值
此函数返回任何数据类型的数组元素。
示例 1
在下面的示例中,让我们看看如何使用 component4() 函数确定数组中索引为 3 的值。
fun main(args: Array<String>) { var array = Array(10) { i -> i } try { val value = array.component4() println("The 4th element of the array is: $value") } catch (exception : Exception) { println("Array length is smaller than four") println(exception.printStackTrace()) } }
输出
以下是输出:
The 4th element of the array is: 3
示例 2
现在,让我们看另一个示例,这里我们创建一个存储不同类型数据的数组。然后我们使用 component4() 函数获取第 4 个元素:
fun main(args: Array<String>) { var array = arrayOf(10, 23.4, 'c', "tutorialspoint.com") try { // use the component4() function val value = array.component4() println("The value of the third index of the array is: $value") } catch (exception : Exception) { println("Array length is smaller than four") println(exception.printStackTrace()) } }
输出
以下是输出:
The value of the third index of the array is: tutorialspoint.com
示例 3
此示例创建一个大小为 3 的数组,并使用 component4() 函数显示数组中索引为 3 的值:
fun main(args: Array<String>) { var array = Array(3){ i -> i } try { val value = array.component4() println("The value of the 4th element of an array is: $value") } catch (exception : Exception) { println("Array length is smaller than 4") println(exception.printStackTrace()) } }
输出
上面的代码会生成以下输出。如果发生异常:
Array length is smaller than 4 java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
kotlin_arrays.htm
广告