代码
提交代码
public class ArrayDemo2 {
public static void main(String[] args) {
// 初始化整型数组arr:
int[] arr = {1, 2, 3};
// 打印数组arr的长度:
System.out.println("数组arr的长度为:" + arr.length);
}
}
运行结果