- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java Static
In Java, the static keyword is used to create members (variables and methods) that belong to the class rather than instances of the class. Here's an overview of static members:
Static Variables:
- Static variables (also known as class variables) are shared among all instances of a class.
- They are declared with the static keyword.
- Example:
Static Methods:
- Static methods belong to the class rather than instances of the class.
- They can be called without creating an instance of the class.
- Example:
Static Blocks:
- Static blocks are used to initialize static variables or perform other static initialization tasks.
- They are executed when the class is loaded into memory.
- Example:
Static Nested Classes:
- Static nested classes are nested classes that are declared as static.
- They can access static members of the enclosing class.
- Example:
Static Import:
- The static import statement allows static members of a class to be imported directly without using the class name.
- Example:
Summary
Static members in Java provide a way to share data and behavior across all instances of a class. They are often used for utility methods, constants, and initialization tasks. Understanding how to use static members effectively is essential for writing efficient and maintainable Java code.