In this example, we will discuss about static classes in Java. First of all, let’s give a short explanation of the static
modifier. For example, if a field or a method in a class has the static
modifier in its declaration , then it is always associated with the class as a whole, rather than with any object of the class.
In the code below we have declared a class named Vehicle
, a class field member named vehicleType
and a method namedgetVehicleType()
, both declared as static
.
3 | private static String vehicleType; |
5 | public static String getVehicleType(){ |
The static
modifier allows us to access the variable vehicleType
and the method getVehicleType()
using the class name itself, as follows:
Vehicle.vehicleType
Vehicle.getVehicleType()
Something similar happens to classes that are declared static
, but in order to explain this better, we must first explain the inner classes or generally, the nested classes, because ONLY nested classes can be static.
Java supports the concept of nested classes. Nested classes are classes that can be defined within the body of another class. An example of a nested class is illustrated below:
The OuterClass which contains another class can be also called top-level class.
Nested classes are further divided into two categories: static and non-static. Nested classes that are declared static
are called static nested classes. Non-static nested classes are just called inner classes.
3 | static class StaticNestedClass { |
- What’s the difference between nested static classes and non-static (inner) classes?
The main difference is that inner class requires instantiation of the outer class so as to be initialized and it is always associated with an instance of the enclosing class. On the other hand nested static class is not associated with any instance of the enclosing class. Nested static classes are declared with the static
keyword, which means than can be accessed like any other static member of class, as we shown before.
1. Example of nested classes
Create a java class named OuterClass.java
with the following code:
OuterClass.java
01 | package com.javacodegeeks.javabasics.staticclass; |
03 | public class OuterClass { |
05 | public static void main(String[] args) { |
08 | OuterClass.NestedStaticClass nestedStatic = new OuterClass.NestedStaticClass(); |
09 | nestedStatic.printMethodNestedStatic(); |
12 | OuterClass outer = new OuterClass(); |
13 | OuterClass.InnerClass inner = outer. new InnerClass(); |
14 | inner.printMethodInner(); |
18 | public static class NestedStaticClass { |
20 | public void printMethodNestedStatic() { |
21 | System.out.println( "Method of nested static class" ); |
26 | public class InnerClass { |
28 | public void printMethodInner() { |
29 | System.out.println( "Method of inner(non-static nested) class" ); |
As we can observe in the above code, we have declared a class named OuterClass
which is considered to be the outer class or otherwise, the top level class. Also, we can see that we have declared two more nested classes (they are enclosed in the outer class), one of which is static and the other one is non-static. Finally, we have declared a main method in the outer class, which is static as always (Really, why is that? The answer is that we can call it without creating any instance of class which contains this main method). We can see that the method of the nested static class can be accessed without creating an object of the OuterClass
, whereas the method of the inner class needs instantiation of the OuterClass
in order to get accessed.
Method of nested static class
Method of inner(non-static nested) class