Kotlin 数组 - component1() 函数



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

语法

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

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

参数

此函数不接受任何参数。

返回值

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

示例 1

在下面的示例中,让我们看看如何使用 component1() 函数确定数组第一个元素的值。

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

输出

以下是输出:

The value of the first element of the array is: 1

示例 2

现在,让我们看看另一个示例,在这里我们创建一个存储不同类型数据的数组。然后我们使用 component1() 函数获取索引 0 的值:

fun main(args: Array<String>) {
   var array = arrayOf(10, 23.4, 'c', "tutorialspoint.com")
   try {
      // use the component1() function
      val value = array.component1()
      println("The value of the first element of the array is: $value")
   } catch (exception : Exception) {
      println("An element passing the given predicate does not exist or the array is empty")
      println(exception.printStackTrace())
   }
}

输出

以下是输出:

The value of the first element of the array is: 10

示例 3

下面的示例创建一个空数组,并使用 component1() 函数显示数组第一个元素的值:

fun main(args: Array<String>) {
   var array = emptyArray<String>()
   try {
      val value = array.component1()
      println("The value of the first element of the array is: $value")
   } catch (exception : Exception) {
      println("An element passing the given predicate does not exist or the array is empty")
      println(exception.printStackTrace())
   }
}

输出

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

An element passing the given predicate does not exist or the array is empty
kotlin_arrays.htm
广告