6_干一手JAVA数组
Posted fcfc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6_干一手JAVA数组相关的知识,希望对你有一定的参考价值。
声明的首选方法
所存放数据类型 [] 数组名字 ;
int [] myArray;
给数组初始化
myArray = new int[10];
数组名 = new 数组类型 [ 数组范围 ]
也可以写在一行 int [] myArray = new int [];这里可以写数组范围 也可以直接给数据
int [] myarray = new int[] {123,321,3523,634,5,76,7,87}
相同的数据类型 组成的集合
以上是关于6_干一手JAVA数组的主要内容,如果未能解决你的问题,请参考以下文章