16) Static keyword
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 has 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
Output:11 Ram ITS
Program of counter without static variable
In this example, we have created an instance variable named count which is incremented in the constructor.
Since instance variable gets the memory at the time of object creation, each object will have the copy of the instance variable, if it is incremented, it won't reflect to other objects. So each objects will have the value 1 in the count variable.
Output:
1
1
1
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.
Output:
1
2
3
Differences:
Static Members
Non-Static Members
It has only one copy of instance variables that share among all objects of the class.
It has its own copy of instance variables.
A static method belongs to the class itself.
Non-static methods belong to each object that is generated from that class.
No need to create object, we can directly call using classname.methodname()
Need to create an object.
Classname obj=new Classname();
Obj.methodname();
It includes static variables, methods and Static Initialization Block (SIB).
It includes non-static variables, methods, constructor and Instance Initialization Block (IIB).
2) Java static method
If you apply static keyword with any method, it is known as static method.
A static method belongs to the class rather than object of a class.
A static method can be invoked without the need for creating an instance of a class.
static method can access static data member and can change the value of it.
Example of static method
Output:
11 Ram BBDIT
22 Raj BBDIT
33 Sam BBDIT
Another example of static method that performs normal calculation
Output:125
Restrictions for static method
There are two main restrictions for the static method. They are:
The static method cannot use non static data member or call non-static method directly.
this and super cannot be used in static context.
Output: Compile Time Error
Q) why java main method is static?
Ans) because object is not required to call static method if it were non-static method,
jvm create object first then call main() method that will lead the problem of extra memory allocation.
3) Java static block
Is used to initialize the static data member.
It is executed before main method at the time of class loading.
Example of static block
Output:
static block invoked
Hello main
Q) Can we execute a program without main() method?
Ans) Yes, one of the way is static block but in previous version of JDK not in JDK 1.7/8
Output:static block (if not JDK7/8)
In JDK7 and above, output will be:
Output:Error: Main method not found in class A3,
please define the main method as:
public static void main(String[] args)
Static class in Java
Can a class be static in Java?
The answer is YES, we can have static class in java. But only nested classes can be static.
Java allows us to define a class within another class. Such a class is called a nested class.
What are the differences between static and non-static nested classes?
1) Nested static class doesn’t need reference of Outer class, but Non-static nested class or Inner class requires Outer class reference.
2) Inner class (or non-static nested class) can access both static and non-static members of Outer class. A static class cannot access non-static members of the Outer class. It can access only static members of Outer class.
3) An instance of Inner class (or non-static nested class) cannot be created without an instance of outer class.
4) Non Static inner Class cannot contain static method.
Example:
How to create instance of static and non static nested class?
In order to create instance of Inner class we need an Outer class instance. Let us create Outer class instance for creating non-static nested class
Last updated