Kotlin 数组 - component5() 函数



Kotlin 数组的 component5() 函数检索数组对象的第 5 个元素,或第 4 个索引的值。如果数组大小小于 5 或为空,则此函数会抛出 IndexOutOfBoundsException 异常。

语法

以下是 Kotlin 数组 component5() 函数的语法:

operator fun <T> List<T>.component5(): T

参数

此函数不接受任何参数。

返回值

此函数返回任何数据类型的数组元素。

示例 1

在本例中,让我们看看如何使用 component5() 函数确定数组中第 4 个索引(即第 5 个元素)的值。

fun main(args: Array<String>) {
   var array = Array(10) { i -> i }
   try {
      val value = array.component5()
      println("The 5th element of the array is: $value")
   } catch (exception : Exception) {
      println("Array length is smaller than four")
      println(exception.printStackTrace())
   }
}

输出

以下是输出:

The 5th element of the array is: 4

示例 2

现在,让我们看另一个例子,在这里我们创建一个存储不同类型数据的数组。然后,我们使用 component5() 函数获取第 5 个元素:

fun main(args: Array<String>) {
   var array = arrayOf(10, 23.4, 'c', "tutorialspoint.com", "tutorix")
   try {
      // use the component5() function
      val value = array.component5()
      println("The value of the 4th index of the array is: $value")
   } catch (exception : Exception) {
      println("Array length is smaller than four")
      println(exception.printStackTrace())
   }
}

输出

以下是输出:

The value of the 4th index of the array is: tutorix

示例 3

此示例创建一个大小为 4 的数组,并使用 component5() 函数显示数组中第 5 个元素(即第 4 个索引)的值:

fun main(args: Array<String>) {
   var array = Array(4){ i -> i }
   try {
      val value = array.component5()
      println("The value of the 5th element of an array is: $value")
   } catch (exception : Exception) {
      println("Array length is smaller than 5")
      println(exception.printStackTrace())
   }
}

输出

以上代码生成以下输出。如果发生异常:

Array length is smaller than 5
java.lang.ArrayIndexOutOfBoundsException: Index 4 out of bounds for length 4
kotlin_arrays.htm
广告