Variables in Java (3 Types)
1.Static Variable
Class level variable
Default value 0
Using class name we can access static variables
Outside the method,Constructor and block
Inside the class
We can share static variable with objects.
2.Instance Variable
Object level variable
Default value 0
Outside the method,Constructor and block
Inside the class
Object destroy
3.Local Variable
We can declare local variable inside method,block and constructor
We need to initialize local variable