CS202 Java-76
Is there Hiding? Yes and No
lHiding exists like it does for C++ for data members (fields)
lBut, a derived class member function with the same name as a base class member function will not hide the base class’ member!
lThis means that funciton overloading in Java works between classes in a hierarchy
•Which is what we “wished” happened in C++!