Question: Suppose that a C++ class D is derived from a base class B. Class B has a public member function Func() that is declared to

Suppose that a C++ class D is derived from a base class B. Class B has a public member function Func() that is declared to be virtual, and class D redefines its own version of Func(). At execution time, suppose that a D object is passed to the following function:

void DoSomething( B x )

{

x.Func();

}

Within the DoSomething function, whose version of Func() is called?

A) B's version

B) D's version

C) Both Bs version and Ds version

D) None of these answers is correct.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!