标签:长度 运行 public 格式 引用类型 概念 统一 表示 引用
两种常见的初始化:
public class Demo01 { public static void main(String[] args) { //使用动态初始化的方式,定义可以存储3个整数的数组容器, int[] array = new int[3]; } }
public class Demo02 { public static void main(String[] args) { // 标准格式:静态初始化 定义存储1,2,3,4,5整数的数组容器 int[] array1 = new int[]{1, 2, 3, 4, 5}; // 简写格式:静态初始化 定义存储1,2,3,4,5整数的数组容器 int[] array2 = {1, 2, 3, 4, 5}; } }
public class Demo03 { public static void main(String[] args) { //定义存储int类型数组,赋值元素1,2,3,4,5 int[] arr = {1, 2, 3, 4, 5}; //为0索引元素赋值为6 arr[0] = 6; //获取数组0索引上的元素 int i = arr[0]; System.out.println(i);//6 //直接输出数组0索引元素 System.out.println(arr[0]);//6 // 获取数组中元素的个数 int length = arr.length; System.out.println(length);//5 } }
标签:长度 运行 public 格式 引用类型 概念 统一 表示 引用
原文地址:https://www.cnblogs.com/wurengen/p/10883859.html