Monday, February 4, 2019

Java static keyword


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 an instance of the class.
The static can be:
  1. Variable (also known as a class variable)
  2. Method (also known as a class method)
  3. Block
  4. Nested class

Java static variable

If you declare any variable as static, it is known as a static variable.
  • The static variable can be used to refer to the common property of all objects (which is not unique for each object), for example, the company name of employees, college name of students, etc.
  • The static variable gets memory only once in the class area at the time of class loading.

Advantages of static variable

It makes your program memory efficient (i.e., it saves memory).

Understanding the problem without static variable

1.     class Student{  
2.          int rollno;  
3.          String name;  
4.          String college="ITS";  
5.     }  
Suppose there are 500 students in my college, now all instance data members will get memory each time when the object is created. All students have its unique rollno and name, so instance data member is good in such case. Here, "college" refers to the common property of all objects. If we make it static, this field will get the memory only once

Example of static variable

1.     //Java Program to demonstrate the use of static variable  
2.     class Student{  
3.        int rollno;//instance variable  
4.        String name;  
5.        static String college ="ITS";//static variable  
6.        //constructor  
7.        Student(int r, String n){  
8.        rollno = r;  
9.        name = n;  
10.     }  
11.     //method to display the values  
12.     void display (){System.out.println(rollno+" "+name+" "+college);}  
13.  }  
14.  //Test class to show the values of objects  
15.  public class TestStaticVariable1{  
16.   public static void main(String args[]){  
17.   Student s1 = new Student(111,"Karan");  
18.   Student s2 = new Student(222,"Aryan");  
19.   //we can change the college of all objects by the single line of code  
20.   //Student.college="BBDIT";  
21.   s1.display();  
22.   s2.display();  
23.   }  
24. 

No comments:

Post a Comment