共计 330 个字符,预计需要花费 1 分钟才能阅读完成。
要获取数组中的某一个值,可以通过数组的索引来访问。数组的索引从 0 开始,依次递增,直到数组的长度减 1 为止。例如,要获取数组 arr
中索引为 index
的值,可以使用 arr[index]
来访问。以下是一个示例代码:
public class Main {public static void main(String[] args) {int[] arr = {1, 2, 3, 4, 5};
int index = 2; // 获取数组中索引为 2 的值
int value = arr[index];
System.out.println(" 数组中索引为 2 的值为: " + value);
}
}
在上面的代码中,我们定义了一个整型数组 arr
,然后通过索引 index
获取了数组中索引为 2 的值并打印出来。
丸趣 TV 网 – 提供最优质的资源集合!
正文完