Default array values in Java
If we don’t assign values to array elements, and try to access them, compiler does not produce error as in case of simple variables. Instead it assigns values which aren’t garbage.
Below are the default assigned values.
- boolean : false
- int : 0
- double : 0.0
- String : null
- User Defined Type : null
// Java program to demonstrate default values of array // elements class ArrayDemo { public static void main(String[] args) { System.out.println("String array default values:"); String str[] = new String[5]; for (String s : str) System.out.print(s + " "); System.out.println("\n\nInteger array default values:"); int num[] = new int[5]; for (int val : num) System.out.print(val + " "); System.out.println("\n\nDouble array default values:"); double dnum[] = new double[5]; for (double val : dnum) System.out.print(val + " "); System.out.println("\n\nBoolean array default values:"); boolean bnum[] = new boolean[5]; for (boolean val : bnum) System.out.print(val + " "); System.out.println("\n\nReference Array default values:"); ArrayDemo ademo[] = new ArrayDemo[5]; for (ArrayDemo val : ademo) System.out.print(val + " "); } } |
chevron_right
filter_none
Output:
String array default values: null null null null null Integer array default values: 0 0 0 0 0 Double array default values: 0.0 0.0 0.0 0.0 0.0 Boolean array default values: false false false false false Reference Array default values: null null null null null
This article is contributed by Twinkle Tyagi .If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- Replace null values with default value in Java Map
- Sorting a 2D Array according to values in any given column in Java
- Default Methods In Java 8
- Default constructor in Java
- How does default virtual behavior differ in C++ and Java ?
- Print intermediate values in an array
- Stream.of(T... values) in Java with examples
- HashMap values() Method in Java
- Returning Multiple values in Java
- Iterating over Enum Values in Java
- EnumMap values() Method in Java
- IdentityHashMap values() Method in Java
- TreeMap values() Method in Java
- How to set Precision for Double values in Java?
- WeakHashMap values() Method in Java

