Variables
Static/class Variables
Single instance which is shared by all the classes. Sort of a global variable bound to the class where it is defined.
Try to use them as final, which makes them into constants.
Instance Variables
Each instance of the class will have their own copy of the variable.
Local Variables
Declared inside methods:
Parameters
Received by methods:
More Information
Last updated
Was this helpful?