In java a final class is a class that cannot be derived. How
can you make a similar class in C++



In java a final class is a class that cannot be derived. How can you make a similar class in C++..

Answer / cpp master

Using virtual base classes. The most derived class has to
initialize all the virtual base class in the inheritance
hierarchy. To make such a class simply create a empty class
with a private constructor and mark the class to be made
non derivable as the friend of that class. Now simply
public virtually derive the non derivable with the empty
class. Below is the example code:

class UnDerivable;

class dummy{
private:
dummy(){}
friend class UnDerivable;

};


class UnDerivable: virtual public dummy
{
};

//try deriving fro the underivable class
class deriveUnderivable:public UnDerivable
{
};


int main()
{
UnDerivable ud;
deriveUnderivable uud; //will give an error
return 0;
}

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is the handle class?

1 Answers  


What is boyce codd normal form in c++?

0 Answers  


How do you traverse a btree in backward in-order?

0 Answers  


What is the Diffrence between a "assignment operator" and a "copy constructor"?

3 Answers   Wipro,


Which operations are permitted on pointers?

0 Answers  






Is swift faster than c++?

0 Answers  


What is the difference between strcpy() and strncpy()?

0 Answers  


What are the different types of polymorphism in c++?

0 Answers  


Is there structure in c++?

0 Answers  


Is C++ case sensitive a) False b) Depends on implementation c) True

0 Answers  


What are containers in c++?

0 Answers  


Mention the storage classes in c++.

0 Answers  


Categories