Instance variables are variables defined at the class level.
Instance variables are initialized to a default value each time a new instance is created
Default Values for Primitives and Reference Types
Variable Type Default Value
Object reference null (not referencing any object)
byte, short, int, long 0
float, double 0.0
boolean false
char '\u0000'
|