2.3.Default Values
The compiler assigns a default value to declared fields, typically zero or null, depending on the data type. However, relying on these default values is considered a poor programming style. The chart below summarizes the default values for various data types.
Data Type | Default Value (for fields) |
byte | 0 |
short | 0 |
int | 0 |
long | 0L |
float | 0.0f |
double | 0.0d |
char | ‘u0000’ |
String (or any object) | null |
boolean | false |
The compiler doesn’t assign a default value to uninitialized local variables. If you can’t initialize them, assign them a value before using them, as accessing them will cause a compile-time error.