Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconFull Stack Developmentbreadcumb forward arrow iconWhat is Static Keyword in Java? Various Applications Explained [2024]

What is Static Keyword in Java? Various Applications Explained [2024]

Last updated:
21st Jun, 2023
Views
Read Time
9 Mins
share image icon
In this article
Chevron in toc
View All
What is Static Keyword in Java? Various Applications Explained [2024]

Static is a reserved keyword in Java. This blog will explain how we can apply a static keyword in Java to various programming aspects, including variables, blocks, methods, and nested classes.

What is a Static Keyword in Java Programming Language?

In Java, when a static member indicates that it belongs to a type itself instead of being an instance of that type. It means that only one instance of a static member is created and shared across all class instances.

The primary method of the class is generally static. The static keyword in Java is used for a constant variable or a method that is the same for all class instances. The keyword is primarily used for memory management. Learn more about Java architecture and components.

What is the use of Static Keyword in Java?

  • Shared Data

One of the primary use cases of static variables is maintaining shared data across class instances. For instance, if we have a class representing a bank, a static variable can keep track of the total number of bank accounts created, as it is information shared among all account objects.

Ads of upGrad blog
  • Constants

Static variables are commonly used to define constants in Java. By declaring a variable as static final, we ensure that its value remains constant throughout the execution of the program. These constants can be accessed without creating an instance of the class, making them easily accessible in various parts of the program.

  • Utility Methods

The static keyword is also used to define utility methods that perform specific tasks and are not associated with any particular object. Utility methods often provide common functionality and can be called using the class name. Examples include mathematical calculations, string manipulation, and file operations.

  • Singleton Pattern

The static keyword is employed in implementing the Singleton design pattern, where only one instance of a class should exist in the entire program. By defining the constructor as private and providing a static method to access the single instance, we ensure that no other instances can be created. The static instance variable stores the sole instance of the class.

  • Improving Performance

The use of static methods and variables can lead to performance improvements. Since static members belong to the class, they are loaded and initialized once, reducing memory consumption and avoiding redundant memory allocation for each object.

The Usage of the Static Keyword in Java Examples

In Java, the static keyword plays a crucial role in defining class-level members and their behaviour. Static variables enable the sharing of data among all instances of a class, while static methods provide utility and common functionality accessible without object instantiation. Understanding the purpose and applications of the static keyword is essential for writing efficient and well-structured Java programs. By leveraging static members effectively, developers can design scalable applications with optimized memory usage and improved performance.

A few examples pf the usage of static keywords in Java includes: 

Static Variable:

public class Counter {
    private static int count;
    public void increment() {
        count++;
    }
    public static void main(String[] args) {
        Counter c1 = new Counter();
        Counter c2 = new Counter();
        c1.increment();
        System.out.println("Count: " + c1.count); // Output: 1
        c2.increment();
        System.out.println("Count: " + c2.count); // Output: 2
    }
}

Static Method:

     public class MathUtils {
    public static int sum(int a, int b) {
        return a + b;
    }
    public static void main(String[] args) {
        int result = MathUtils.sum(5, 10);
        System.out.println("Sum: " + result); // Output: 15
    }
}

Static Constant:
    public class Constants {
    public static final double PI = 3.14159;
    public static void main(String[] args) {
        System.out.println("The value of PI is: " + Constants.PI); // Output: The value of PI is: 3.14159
    }
}


Singleton Pattern:
    public class Singleton {
    private static Singleton instance;
    private Singleton() {
        // Private constructor to prevent direct instantiation
    }
    public static Singleton getInstance() {
        if (instance == null) {
            instance = new Singleton();
        }
        return instance;
    }
}

Similarly, if you’re wondering what is static variable in Java, it is a variable that belongs to the class, not the instance of the class. This means that only one copy of the static variable exists, no matter how many instances of the class exist in your program. Static variables are typically used for constants or for maintaining state information within a class across all its instances. They can also be used to provide access control by making them private and then providing public static methods to manipulate them. Furthermore, static variables can be used to optimize memory usage since multiple objects will share the same variable rather than having each object store its own copy.

How do you create Static Members?

Static members can be created by preceding their declarations with the keyword static. Any member declared as static can be accessed before any objects of its class are created without referencing any object.

The static keyword in Java is a non-access modifier. It can be used for –

  • Variables
  • Methods
  • Blocks
  • Nested Classes

Explore Our Software Development Free Courses

Static Variable

Static variables are primarily global variables. When you define a variable as static, a single copy of the variable is created and shared among all objects at the class level. Static variables are created at the class level, and all the instances of the class share the same static variable.

Using Static Variables

  • When the value of the variables needs to be shared across all objects.
  • When the value of the variables is independent of the objects.

Things to Remember

  • Static variables can be declared only at the class level.
  • To access static variables, you do not need to initialize objects.
  • Static variables don’t need any object reference. They can be directly accessed using the class name.
  • Though static variables can be accessed using an object reference, it should be avoided to prevent confusion between a class variable or an instance variable. Always refer to them by using the class name.

Read: Pattern Programs in Java

Explore our Popular Software Engineering Courses

Static Method

When a method is declared with the keyword static, it’s known as a static method. Static methods have the following restrictions –

  • Static methods can call other static methods only.
  • Static methods can directly access static data.

If you want to share specific code across all class instances, you need to write the code in a static method.

Static methods are also used to create helper or utility classes so that one doesn’t need to create a new object of these classes for obtaining them.

Using Static Methods

  • To manipulate or access other static methods and static variables that don’t depend upon objects.
  • They are widely used in helper and utility classes.

Things to Remember

  • Static methods can’t use ‘super’ or ‘this’ keywords.
  • Abstract methods can’t be static.
  • Static methods in Java are resolved at compile time and hence, can’t be overridden.
  • Static methods can’t access instance methods or instance variables directly. They need some object reference for doing this.

Why is the Main Method in Java Static?

As static methods don’t need an object for invoking Java, the main method is static. Had it not been static, JVM would need to have created an object before calling the main(), leading to extra memory allocation.

In-Demand Software Development Skills

Static Block

Static blocks make it easy to initialize variables with predefined values. The following code demonstrates the usage of a static block that contains a variable declaration that is executed exactly once when the class is loaded.

Using Static Block

  • When static variables initialization needs some additional logic except assignment
  • When static variables initialization is error-prone and needs exception handling

Things to Remember

  • Static variables and static blocks are resolved and executed in the same order as they appear in the class.
  • Multiple static blocks can be present in a class.

Must Read: Java Project Ideas & Topics

Static Class

Only a nested class can be made static. A nested static class doesn’t need a reference for the outer class.

Using Static Nested Class

  • Increases encapsulation
  • Makes the code more manageable and increases readability
  • If the nested class doesn’t need any access to the instance members of its enclosing class, it’s a good idea to declare it as static. That way, it won’t be coupled to the outer class and won’t need any stack or heap memory.

Things to Remember

  • Static nested classes can’t access any instance members of the enclosing classes.
  • They can access all static members of the enclosing class.
  • The top-level class can’t be static.

Enroll in Software Engineering Courses from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs, or Masters Programs to fast-track your career.

Ads of upGrad blog

Read our Popular Articles related to Software Development

Conclusion

This blog explained the static keyword in Java and its use in variables, methods, blocks, and nested classes. 

If you’re interested to learn more about Java, full-stack software development, check out upGrad & IIIT-B’s Executive PG Program in Full-stack Software Development which is designed for working professionals and offers 500+ hours of rigorous training, 9+ projects, and assignments, IIIT-B Alumni status, practical hands-on capstone projects & job assistance with top firms.

Profile

Sriram

Blog Author
Meet Sriram, an SEO executive and blog content marketing whiz. He has a knack for crafting compelling content that not only engages readers but also boosts website traffic and conversions. When he's not busy optimizing websites or brainstorming blog ideas, you can find him lost in fictional books that transport him to magical worlds full of dragons, wizards, and aliens.

Frequently Asked Questions (FAQs)

1How is the static keyword different from the final keyword?

A static variable or method can be accessed directly in the program without using an instance of that class. A final variable in Java can only be initialised once, and its value remains the same throughout the program, whereas a static variable can be initialised again. A final variable cannot be inherited by a variable or a subclass method. Also, classes cannot override final variables. On the other hand, static methods can call other static methods but can only access the static members of the class. A static class cannot have any objects; it will only consist of static variables and methods.

2Explain the relevance of every keyword in public static void mainString args?

Firstly, we use public, an access modifier that specifies that any variable or method can access the main() method. Then, we use the static keyword, which identifies the main() method as class-based. The main() can be accessed without instantiating the class. The compiler will throw an error if you do not declare the main() method static. main() is called by the JVM (Java Virtual Machine) before all the objects are made. The return type of the main() method in Java is void which means it doesn’t return a value, and args refer to the arguments passed to the main() method while we run the code.

3How are interfaces different from abstract classes?

The interfaces can only consist of abstract methods, whereas abstract classes can contain abstract and non-abstract methods. Interfaces in Java can only have static and final variables, whereas abstract classes can have both non-static and non-final variables. Interfaces enable Java developers to achieve multiple inheritance which is not possible through the conventional way in Java. Abstract classes are not used to achieve inheritance. By default, all the variables that are data members of an interface are of public visibility, whereas abstract classes can declare them as protected or private. Implementation of a interface using an abstract class is easily possible but not vice-versa.

Explore Free Courses

Suggested Tutorials

View All

Suggested Blogs

Top 7 Node js Project Ideas & Topics
31562
Node.JS is a part of the famous MEAN stack used for web development purposes. An open-sourced server environment, Node is written on JavaScript and he
Read More

by Rohan Vats

05 Mar 2024

How to Rename Column Name in SQL
46912
Introduction We are surrounded by Data. We used to store information on paper in enormous file organizers. But eventually, we have come to store it o
Read More

by Rohan Vats

04 Mar 2024

Android Developer Salary in India in 2024 [For Freshers & Experienced]
901316
Wondering what is the range of Android Developer Salary in India? Software engineering is one of the most sought after courses in India. It is a reno
Read More

by Rohan Vats

04 Mar 2024

7 Top Django Projects on Github [For Beginners & Experienced]
52048
One of the best ways to learn a skill is to use it, and what better way to do this than to work on projects? So in this article, we’re sharing t
Read More

by Rohan Vats

04 Mar 2024

Salesforce Developer Salary in India in 2024 [For Freshers & Experienced]
909157
Wondering what is the range of salesforce salary in India? Businesses thrive because of customers. It does not matter whether the operations are B2B
Read More

by Rohan Vats

04 Mar 2024

15 Must-Know Spring MVC Interview Questions
34733
Spring has become one of the most used Java frameworks for the development of web-applications. All the new Java applications are by default using Spr
Read More

by Arjun Mathur

04 Mar 2024

Front End Developer Salary in India in 2023 [For Freshers & Experienced]
902374
Wondering what is the range of front end developer salary in India? Do you know what front end developers do and the salary they earn? Do you know wh
Read More

by Rohan Vats

04 Mar 2024

Method Overloading in Java [With Examples]
26181
Java is a versatile language that follows the concepts of Object-Oriented Programming. Many features of object-oriented programming make the code modu
Read More

by Rohan Vats

27 Feb 2024

50 Most Asked Javascript Interview Questions & Answers [2024]
4361
Javascript Interview Question and Answers In this article, we have compiled the most frequently asked JavaScript Interview Questions. These questions
Read More

by Kechit Goyal

26 Feb 2024

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon