by Yogesh | Sep 17, 2016 | Java tutorials
Hiding of Base Class member variable from sub class in java If a super class and sub class have members with the same name then super class members are still inherited but they are hidden by the member of sub class. We can access them by qualifying with keyword super.... by Yogesh | Sep 17, 2016 | Java tutorials
Use of private member variable of super class in subclass What you will learn? How to access private member variable of parent class into child class. Hiding super class variable. Some Important factors An inherited member is that member of base class that is freely...