Skip to content
Advertisement

Tag: data-hiding

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 Child.java This code prints “Parent”. Also read at few locations concept of data hiding. Parent.java Child.java Now the output is “Child”. So does this mean that static variables are inherited but they follow the concept of data-hiding? Answer Please

Advertisement