You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SupsupRef; // Declaring a variable called supRef of the class type Sup. This variable does not define an object. Instead, it is simply a variable that can refer to an object.
supRef = superOb;
supRef.who(); // In each case, the version of who() to call is determined at run time by ...
supRef = subOb1;
supRef.who(); // ... the type of object being referred to.