123ArticleOnline Logo
Welcome to 123ArticleOnline.com!
ALL >> Computer-Programming >> View Article

What Is The Static Keyword In Java

Profile Picture
By Author: KT brain
Total Articles: 1
Comment this article
Facebook ShareTwitter ShareGoogle+ ShareTwitter Share

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.static variable

If we 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. means a single copy to be shared by all instances of the class.

.The static variable gets memory only once in class area at the time of class loading.

.It is a variable which belongs to the class and not to object(instance)

.Static variables are initialized only once , at the start of the execution . These variables will be initialized first, before the initialization of any instance variables

.A static variable can be accessed directly by the class name and doesn’t need any object

Advantage ...
... of static variable

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

Ex:static variable

1.//Program of static variable

2.

3.class Employee11{

4.int empId;

5.String name;

6.static String company=“VBBS”;

7.

8.Employee11(int r,String n){

9.empId = r;

10.name = n;

11.}

12.void display (){System.out.println(empId+” “+name+” “+company);}

13.

14.public static void main(String args[]){

15.Employee11 e1 = new Employee11 (111,“Kiran”);

16.Employee11 e2 = new Employee11 (222,“Aryan”);

17.

18.e1.display();

19.e2.display();

20. }

21.}

static method

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 : public static void main itself is a static method

class MyStatic{
static int i;
static String s;
public static void main(String args[]) //Its a Static Method
{

MyStatic obj=new MyStatic();
//Non Static variables accessed using object obj
System.out.println("i:"+obj.i);
System.out.println("s:"+obj.s);

}
}

Output:

i:0
s:null

Static method display()
class MyStatic1{
static int i;
static String s;
//Static method
static void display()
{
//Its a Static method
MyStatic1 obj1=new Mystatic1();
System.out.println("i:"+obj1.i);
System.out.println("i:"+obj1.i);
}

void funcn()
{
//Static method called in non-static method
display();
}
public static void main(String args[]) //Its a Static Method
{
//Static method called in another static method
display();
}
}

Output:

i:0
i:0

Restrictions for static method

There are two main restrictions for the static method. They are:

1.The static method can not use non static data member or call non-
static method directly.
2.this and super cannot be used in static context.

1.class A{
2.int a=40;//non static
3.
4.public static void main(String args[]){
5.System.out.println(a);
6. }
7.}

Static Block

Static block is mostly used for changing the default values of static variables.This block gets executed when the class is loaded in the memory.

A class can have multiple Static blocks, which will execute in the same sequence in which they have been written into the program.

.Is used to initialize the static data member.
.It is executed before main method at the time of class loading.

Example: static block

1.class A2{
2.static{System.out.println(“static block is invoked”);}
3.public static void main(String args[]){
4.System.out.println(“Hello world”);
5. }
6.}

Output:static block is invoked

Hello world

Total Views: 556Word Count: 646See All articles From Author

Add Comment

Computer Programming Articles

1. Why Every Business Needs A Custom Mobile App In The Digital Age
Author: Miachael Williams

2. Building A Strong Foundation: Beginner Programming Courses For Young Learners
Author: stem-xpert

3. How Web Design Chicago Is Revolutionizing The User Experience For Businesses
Author: Tim Harrison

4. Best It Courses | Which Course In It Is Best?
Author: Kodestree

5. Uv Stabilizers Market Poised To Hit $1.90 Billion By 2032: Growth Trends & Insights
Author: Rutuja Kadam

6. The Ultimate Guide To Choosing The Best Cross-platform App Development Company For Your Business Success
Author: Siddharth

7. Stand-up Pouches Market To Be Worth $52.1 Billion By 2032
Author: Rutuja Kadam

8. Top Full Stack Development Services For Web And Mobile Apps In 2025
Author: jonathan

9. Revolutionize Your Online Presence With Cutting-edge Web Development!
Author: Hitvanshi

10. Top 10 Ibm I Service Providers Right Now
Author: Siddhant Saxena

11. How Mobile Applications Helps Local Businesses Grow?
Author: Ritesh Sharma

12. The Dynamic Landscape Of Advertising Agencies In Indonesia: A Hub For Creativity And Innovation
Author: milestone

13. 10 Advantages Of Building A Career In Full Stack Java Development In Bhopal
Author: Rohan Rajput

14. Top Mobile App Development Company In Canada: Comprehensive Solutions For Your Business
Author: iTechnolabs

15. Democratizing Development: The Rise Of Low-code And No-code Platforms
Author: Techeunoia International

Login To Account
Login Email:
Password:
Forgot Password?
New User?
Sign Up Newsletter
Email Address: