Java static keyword
The static keyword in java is used for memory management mainly. We can apply java static keyword with variables, methods, blocks and nested class. The static keyword belongs to the class than instance of the class.
The static can be:
- variable (also known as class variable)
- method (also known as class method)
- block
- nested class
1) Java static variable
If 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.
Advantage of static variable
It makes your program memory efficient (i.e it saves memory).
Understanding problem without static variable
- class Student{
- int rollno;
- String name;
- String college="ITS";
- }
Suppose there are 500 students in my college, now all instance data members will get memory each time when object is created.All student have its unique rollno and name so instance data member is good.Here, college refers to the common property of all objects.If we make it static,this field will get memory only once.
Example of static variable
- //Program of static variable
- class Student8{
- int rollno;
- String name;
- static String college ="ITS";
- Student8(int r,String n){
- rollno = r;
- name = n;
- }
- void display (){System.out.println(rollno+" "+name+" "+college);}
- public static void main(String args[]){
- Student8 s1 = new Student8(111,"Karan");
- Student8 s2 = new Student8(222,"Aryan");
- s1.display();
- s2.display();
- }
- }
111 Karan ITS 222 Aryan ITS
Program of counter by static variable
As we have mentioned above, static variable will get the memory only once, if any object changes the value of the static variable, it will retain its value.
2) Java static methodIf you apply static keyword with any method, it is known as static method.
Example of static method
111 Karan BBDIT 222 Aryan BBDIT 333 Sonoo BBDIT
|
No comments:
Post a Comment