by Yogesh | Sep 18, 2016 | Java tutorials
Super KeyWord in Java Super:– Super keyword is used to Call the Super class variable. Call the super class constructor. Call the super class methods. 1. Call the Super class variable : Its mandatory to use when derived class variables and base class variables... 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....