Q:

? In C++,What is a virtual base class

0

In C++,What is a virtual base class ?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

class Foo
{
public:
    void DoSomething() { /* ... */ }
};
class Bar : public virtual Foo
{
public:
    void DoSpecific() { /* ... */ }
};

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now