阅读量:3
在Java中,可以通过以下步骤创建数组并添加元素:
- 声明数组变量:首先,需要声明一个数组变量来存储数组对象。语法如下:
数据类型[] 数组名;
例如,声明一个整数数组变量:
int[] numbers;
- 创建数组对象:使用
new
关键字来创建数组对象,指定数组的长度。语法如下:
数组名 = new 数据类型[数组长度];
例如,创建一个长度为5的整数数组:
numbers = new int[5];
- 添加元素:可以使用数组的索引来访问和修改数组中的元素。数组的索引从0开始,依次递增。语法如下:
数组名[索引] = 值;
例如,给数组的第一个元素赋值为10:
numbers[0] = 10;
完整的示例代码如下:
public class Main { public static void main(String[] args) { int[] numbers; // 声明数组变量 numbers = new int[5]; // 创建数组对象 numbers[0] = 10; // 添加元素 numbers[1] = 20; numbers[2] = 30; numbers[3] = 40; numbers[4] = 50; System.out.println("数组元素:"); for (int i = 0; i < numbers.length; i++) { System.out.println(numbers[i]); } } }
运行结果:
数组元素: 10 20 30 40 50
这样就成功创建了一个长度为5的整数数组,并添加了相应的元素。