Search This Blog

Tuesday, September 9, 2014

Java static class Example

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.


1public class Vehicle {
2
3    private static String vehicleType;
4     
5    public static String getVehicleType(){
6        return vehicleType;
7    }
8
9}
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:
1class OuterClass {
2    //code
3    class NestedClass {
4        //code
5    }
6}
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.
1class OuterClass {
2    //code
3    static class StaticNestedClass {
4        //code
5    }
6    class InnerClass {
7        //code
8    }
9}
  • 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
01package com.javacodegeeks.javabasics.staticclass;
02
03public class OuterClass {
04
05    public static void main(String[] args) {
06
07        //nested static class doesn't need instantiation of the outer class
08        OuterClass.NestedStaticClass nestedStatic = new OuterClass.NestedStaticClass();
09        nestedStatic.printMethodNestedStatic();
10
11        //inner class needs instantiation of the outer class
12        OuterClass outer = new OuterClass();
13        OuterClass.InnerClass inner = outer.new InnerClass();
14        inner.printMethodInner();
15    }
16
17    // Static nested class
18    public static class NestedStaticClass {
19
20        public void printMethodNestedStatic() {
21            System.out.println("Method of nested static class");
22        }
23    }
24
25    // inner (non-static nested) class
26    public class InnerClass {
27
28        public void printMethodInner() {
29            System.out.println("Method of inner(non-static nested) class");
30        }
31    }
32
33}
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.

  • Output:
Method of nested static class
Method of inner(non-static nested) class

My Profile

My photo
can be reached at 09916017317