CPSC 427a: Object-Oriented Programming
Michael J. Fischer
Uses of polymorphism
Some uses of polymorphism:
Multiple representations
Might want different representations for an object.
Example: A point in the plane can be represented by either Cartesian or
Polar coordinates.
A Point base class can provide abstract operations on points.
E.g., virtual int quadrant() const returns the quadrant of
*this.
For Cartesian coordinates, quadrant is determined by the signs of the x and y coordinates of the point.
For polar coordinates, quadrant is determined by the angle θ.
Both Cartesian and Polar derived classes should contain a method for int quadrant() const.
Heterogeneous containers
One might wish to have a stack of Point objects.
The element type of the stack would be Point*.
The actual values would have type either Cartesian* or Polar*.
The automatically generated type tags and dynamic dispatching obviates
the need to cast the result of pop() to the correct type.
Example:
Stack st; Point* p; |
p = st.pop(); | // no need to cast result |
p->quadrant(); | // automatic dispatch |
Run-time variability
Two types are closely related; differ only slightly.
Example: Company has several different kinds of employees.
Pure virtual functions
Suppose we don’t want B::f() and never create instances of B.
We make B::f() into a pure virtual function by writing =0.
A pure virtual function is sometimes called a promise.
It tells the compiler that a construct like bp->f() is legal.
The compiler requires every derived class to contain a method f().
Abstract classes
An abstract class is a class with one or more pure virtual functions.
An abstract class cannot be instantiated.
It can only be used as the base for another class.
The destructor can never be a pure virtual function but will generally be
virtual.
A pure abstract class is one where all member functions are pure virtual
(except for the destructor) and there are no data members,
Pure abstract classes define an interface à la Java.
An interface allows user-supplied code to integrate into a large system.
Name visibility
Private
derivation
(default)
class B : A { ... }; specifies private derivation of B from
A.
A class member inherited from A become private in B.
Like other private members, it is inaccessible outside of B.
If public in A, it can be accessed from within A or B or via an instance
of A, but not via an instance of B.
If private in A, it can only be accessed from within A.
It cannot even be accessed from within B.
Private derivation example Example:
Public
derivation
class B : public A { ... }; specifies public derivation of B from
A.
A class member inherited from A retains its privacy status from
A.
If public in A, it can be accessed from within B and also via instances
of A or B.
If private in A, it can only be accessed from within A.
It cannot even be accessed from within B.
Public derivation example
Example:
The protected keyword
protected is a privacy status between public and private.
Protected class members are inaccessible from outside the class (like
private) but accessible within a derived class (like public).
Example:
Protected derivation
class B : protected A { ... }; specifies protected derivation of B
from A.
A public or protected class member inherited from A becomes
protected in B.
If public in A, it can be accessed from within B and also via instances
of A but not via instances of B.
If protected in A, it can be accessed from within A or B but not from
outside.
If private in A, it can only be accessed from within A.
It cannot be accessed from within B.
Privacy summary
Class A
Kind of Derivation | |||
public | protected | private | |
public | public | protected | private |
protected | protected | protected | private |
private | invisible | invisible | invisible |
Surprising
example
1
1 class A {
2 protected:
3 int x;
4 };
5 class B : public A {
6 public:
7 int f() { return x; } // ok
8 int g(A* a) { return a->x; } // privacy violation
9 };
Result:
Surprising
example
2:
contrast
the
following
1 class A { };
2 class B : public A {}; // <-- public derivation
3 int main() { A* ap; B* bp;
4 ap = bp; }
Result: OK.
___________________________________________________________
1 class A { };
2 class B : private A {}; // <-- private derivation
3 int main() { A* ap; B* bp;
4 ap = bp; }
Result:
Surprising
example
3
1 class A { protected: int x; };
2 class B : protected A {};
3 int main() { A* ap; B* bp;
4 ap = bp; }
Result: