Static Variable in Java Very useful for Selenium

What is static variable?
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:
  1. variable (also known as class variable)
  2. method (also known as class method)
  3. block
  4. 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

  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 object is created. All students 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.
Java static property is shared to all objects

Example of static variable

  1. //Program of static variable  
  2.   
  3. class Student8{  
  4.    int rollno;  
  5.    String name;  
  6.    static String college ="ITS";  
  7.      
  8.    Student8(int r,String n){  
  9.    rollno = r;  
  10.    name = n;  
  11.    }  
  12.  void display (){System.out.println(rollno+" "+name+" "+college);}  
  13.   
  14.  public static void main(String args[]){  
  15.  Student8 s1 = new Student8(111,"Karan");  
  16.  Student8 s2 = new Student8(222,"Aryan");  
  17.    
  18.  s1.display();  
  19.  s2.display();  
  20.  }  
  21. }  
Output: 111 Karan ITS
                222 Aryan ITS

Comments

Popular posts from this blog

Handling Dynamic Web Tables Using Selenium WebDriver

Verify Specific Position of an Element

Read it out for TESTNG before going for an iterview