What is static variable?
1533
26-Mar-2015
Anonymous User
26-Mar-2015If you declare any variable as static, it is known static variable.
The static variable can be used to refer the common property of all objects (that is not unique for each object) e.g. company name of employees,college name of students etc.
The static variable gets memory only once in class area at the time of class loading.
It makes your program memory efficient (i.e it saves memory)
Output:
111 Karan ITS
222 Aryan ITS