This tutorial demonstrate the use of static method and static variable.
This tutorial demonstrate the use of static method and static variable.Static variable are used within the static method. Non static variable do not exits in the static method. Static variables are shared by its class instances. Static variable can be used without using the instances of that class.This can be seen in the below program.
class StaticMethod {
|
Value of static variable j is 1