OOP1 Inheritance Flashcards
What is a class that inherits from another called?
Derived class, sub class, child class
What is a class that is inherited from called?
Base class, super class, parent class
What can a derived class access from its base class (using public inheritance)?
Only that which is not private
When a derived class is instatiated, what constructors are called and in what order?
The base class constructor is called first, the derived class after
How to interit from another class?
class derivedFoo : public baseFoo
{…};
How to pass arguments to the constructor of the base class?
classFoo::classFoo(argumentFoo) : baseFoo(argumentFoo)
{…}
What is static binding?
The compile time determination of which member function will be used based on class type of object
What arguments will a member function take if its parameter is of a certain type?
It will accept arguments of the same type, or any types that descended from it
What is dynamic binding?
The run time determination of which function to call for a particular object
What is the keyword for creating a member function that uses dynamic binding?
Virtual
If foo is a virtual function, the function of the class type of the ___ will be invoked
Argument object
If foo is not a virtual function, the function of the class to which the ____ belongs will be invoked
The parameter object
A polymorphic operation is?
An operation which has multiple meanings depending on the object bound to it at run time
Polymorphic operations must use which kind of argument passing?
Pass by reference
What happens if polymorphic operations are passed to by value?
Members will not be copied that don’t exist in the parent class (member slicing), and static binding will occur
The keyword virtual appears in which class of the relationship?
The base class
Can a function of a derived class alter the return type of a virtual function of its base?
No
Is a base class has virtual functions, so must also its ____ function
Destructir
What does the protected keyword do?
Act private externally, act public for any derived classes
What does the friend keyword do?
Allows a non-member function full access to protected and private member variables and functions
What does the explicit keyword do?
Controls unwanted implicit type casting of parameters for constructors
An derived class method is said to be what, if it inherits from the parent without changing?
Overridden
If base class has only parameterised constructor, you must create at least ___ constructors in the derived class
One
What can be passed from a serviced constructor to the base constructor?
Constants and parameters