1、
2、数组的命名方法
1)int[]ages=new int[5];
2) int[]ages;
ages=new int[5];
3)int[]ags={1,2,3,4,5};
4)int[]ags;
ags=new int{1,2,3,4};
或者
int[]ags=new int{1,2,3,4};
3、java不支持不同类型的重名数组
4、java中数组的循环赋值
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package dierge; public class Shuzu { public static void main(String args[]){ int []ags= new int [ 5 ]; int i; for (i= 0 ;i<ags.length;i++){ ags[i]=i; System.out.println( "ags[" +i+ "]是:" +ags[i]); } } } |
打印结果如下:
ags[0]是:0
ags[1]是:1
ags[2]是:2
ags[3]是:3
ags[4]是:4
5、各种类型数组的初始值
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package dierge; public class Shuzu { public static void main(String args[]){ int []ags= new int [ 1 ]; System.out.println( "int类型数组的默认值是:" +ags[ 0 ]); boolean []a= new boolean [ 1 ]; System.out.println( "boolean类型数组的默认值是:" +a[ 0 ]); byte []b= new byte [ 1 ]; System.out.println( "byte类型数组的默认值是:" +b[ 0 ]); short []c= new short [ 1 ]; System.out.println( "short类型数组的默认值是:" +c[ 0 ]); char []d= new char [ 1 ]; System.out.println( "char类型数组的默认值是:" +d[ 0 ]); long []e= new long [ 1 ]; System.out.println( "long类型数组的默认值是:" +e[ 0 ]); float []f= new float [ 1 ]; System.out.println( "float类型数组的默认值是:" +f[ 0 ]); double []g= new double [ 1 ]; System.out.println( "double类型数组的默认值是:" +g[ 0 ]); } } |
打印结果如下:
int类型数组的默认值是:0
boolean类型数组的默认值是:false
byte类型数组的默认值是:0
short类型数组的默认值是:0
char类型数组的默认值是:
long类型数组的默认值是:0
float类型数组的默认值是:0.0
double类型数组的默认值是:0.0
以上这篇java中数组的相关知识小结(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。