In this tutorial, we will learn about arrays in Kotlin. We will cover the basics of declaring and using arrays, including accessing and modifying elements.
An array is a collection of elements of the same type stored in contiguous memory locations. It allows you to store multiple items under a single name and access them using an index.
The syntax to declare an array in Kotlin is:
val arrayName = arrayOf(elements)
We will learn how to declare, initialize, access, and modify arrays in Kotlin.
arr
with 5 elements.fun main() {
val arr = arrayOf(1, 2, 3, 4, 5)
for (num in arr) {
println(num)
}
}
1 2 3 4 5
arr
with 5 elements.fun main() {
val arr = arrayOf(10, 20, 30, 40, 50)
println("The third element is: " + arr[2])
}
The third element is: 30
arr
with 5 elements.fun main() {
val arr = arrayOf(5, 10, 15, 20, 25)
arr[1] = 50
for (num in arr) {
println(num)
}
}
5 50 15 20 25