数组

2019-02-12  本文已影响0人  Kevin_Huang54

基本概念

int[] a = new int[]{1,2,3,4}
//简化写法:
int[] a = {1,2,3,4}

2、动态初始化:只指定长度,系统会自动填充默认值

int[] a = new int[10]

数组的遍历

int[] a = new int[10];
Arrays.stream(a).forEach(i -> System.out.println(i));

数组的储存方式

上一篇下一篇

猜你喜欢

热点阅读