数组元素默认的初始值都是什么?
在java中,如果为数组分配了内存空间,那么系统会为数组元素指定默认值,该默认值与数组的数据类型有关。byte 型数组元素默认初始值是 0 。
short 型数组元素的默认初始值是 0 。
int 型数组元素的默认初始值是 0 。
long 型数组元素的默认初始值是 0L。
float 型数组元素的默认初始值是 0.0f。
double 型数组元素的默认初始值是 0.0d。
char 型数组元素的默认初始值是 .\u.000。
boolean 型数组元素的默认初始值是 false。
引⽤类型 (类、接⼝)数组元素的默认初始值是 null,例如:String 类型数组的默认初始值是 null。
@Test
public void test15(){
byte arrByte[] = new byte[1];
for (int i = 0; i < arrByte.length; i++) {
System.out.println("arrByte ==> "+arrByte[i]);
}
short arrShort[] = new short[1];
for (int i = 0; i < arrShort.length; i++) {
System.out.println("arrShort ==> "+arrShort[i]);
}
int arrInt[] = new int[1];
for (int i = 0; i < arrInt.length; i++) {
System.out.println("arrInt ==> "+arrInt[i]);
}
long arrLong[] = new long[1];
for (int i = 0; i < arrLong.length; i++) {
System.out.println("arrLong ==> "+arrLong[i]);
}
float arrFloat[] = new float[1];
for (int i = 0; i < arrFloat.length; i++) {
System.out.println("arrFloat ==> "+arrFloat[i]);
}
double arrDouble[] = new double[1];
for (int i = 0; i < arrDouble.length; i++) {
System.out.println("arrDouble ==> "+arrDouble[i]);
}
boolean arrBoolean[] = new boolean[1];
for (int i = 0; i < arrBoolean.length; i++) {
System.out.println("arrBoolean ==> "+arrBoolean[i]);
}
char arrChar[] = new char[1];
for (int i = 0; i < arrChar.length; i++) {
令数组全部的值为0
System.out.println("arrChar ==> "+arrChar[i]);
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。