如何用 Java 声明数组变量?
你可以声明一个数组,就像变量一样 -
int myArray[];
你可以使用 new 关键字创建数组,就像创建对象一样 -
myArray = new int[5];
你可以通过逐个为所有元素赋值,使用索引来初始化数组 -
myArray [0] = 101; myArray [1] = 102;
你可以使用索引值来访问数组元素 -
System.out.println("The first element of the array is: " + myArray [0]);
System.out.println("The first element of the array is: " + myArray [1]);
Alternatively, you can create and initialize an array using the flower braces ({ }):
Int [] myArray = {10, 20, 30, 40, 50}
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP