- 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 数组 - get() 函数
Kotlin 数组的 get() 函数检索指定索引位置的数组元素,如果索引超出数组范围,则抛出 IndexOutOfBoundsException 异常。此函数使用索引运算符调用。例如,value = arr[index]。
语法
以下是 Kotlin 数组 get() 函数的语法:
operator fun get(index: Int): T
参数
此函数接受单个参数 index。它表示需要返回的元素的位置。
返回值
此函数根据指定索引位置的元素,返回数组的指定类型的值。
示例 1
以下是一个基本示例,我们创建一个大小为 10 的数组。然后我们使用 get() 函数显示指定索引位置的元素:
import java.lang.Exception fun main(args: Array<String>) { var array = Array(10) { i -> i} val index = 5 try { val value = array.get(index) println("The value at the index $index in the array is: $value ") } catch (exception : Exception) { println("Invalid index entered, size of the array is ${array.size}") println(exception.printStackTrace()) } }
输出
以下是输出:
The value at the index 5 in the array is: 5
示例 2
现在,让我们创建一个另一个示例。在这种情况下,我们传递一个超出数组大小的索引值,这将导致 IndexOutOfBoundsException 异常:
import java.lang.Exception fun main(args: Array<String>) { var array = Array(2) { init -> 1 } val index = 3 try { val value = array.get(index) println("The value at the index $index in the array is: $value ") } catch (exception : Exception) { println("Invalid index entered, size of the array is ${array.size}") println(exception.printStackTrace()) } }
输出
以下是输出:
Invalid index entered, size of the array is 2 java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 2
示例 3
下面的示例创建一个大小为 10,包含不同类型的数组。然后,它根据迭代计数赋值。然后我们使用 get() 获取指定索引的值:
import java.lang.Exception fun main(args: Array<String>) { var array = Array(10) { i -> if(i<3) {'c'} else if(i<5) {"Hi"} else {5} } val index = 3 try { val value = array.get(index) println("The value at the index $index in the array is: $value ") } catch (exception : Exception) { println("Invalid index entered, size of the array is ${array.size}") println(exception.printStackTrace()) } }
输出
以上代码生成以下输出:
The value at the index 3 in the array is: Hi
kotlin_arrays.htm
广告