Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are static variables inherited

I have read at 1000's of locations that Static variables are not inherited. But then how this code works fine?

Parent.java

public class Parent {
        static String str = "Parent";
    }

Child.java

public class Child extends Parent {
        public static void main(String [] args)
        {
            System.out.println(Child.str);
        }
    }

This code prints "Parent".

Also read at few locations concept of data hiding.

Parent.java

public class Parent {
    static String str = "Parent";
}

Child.java

public class Child extends Parent {
    static String str = "Child";

    public static void main(String [] args)
    {
        System.out.println(Child.str);
    }
}

Now the output is "Child".

So does this mean that static variables are inherited but they follow the concept of data-hiding?

like image 582
Aman Avatar asked May 14 '16 11:05

Aman


2 Answers

"Inherited" is not an ideal description of what is happening; a better way to describe it would be to say that static variables are shared among the subclasses of the base class.

All derived classes obtain access to static variables of their base classes. This includes protected variables, mirroring the situation with variables that are inherited.

The concept of hiding applies as well: when a class-specific variable str appears in the Child class, it hides the str variable of the parent class.

Note that the variable str of the base class does not become inaccessible: Child can still access it by fully qualifying with the name of Parent class.

like image 199
Sergey Kalinichenko Avatar answered Oct 06 '22 12:10

Sergey Kalinichenko


Please have a look into the documentation of oracle: http://docs.oracle.com/javase/specs/jls/se8/html/jls-8.html#d5e12110

Static variables are inherited as long as they're are not hidden by another static variable with the same identifier.

like image 41
FlorianSchunke Avatar answered Oct 06 '22 13:10

FlorianSchunke