How would you stop a class from class from being derived or
inherited?The constructer should not be Private,as object
instantiation should be allowed.
Answer Posted / mms zubeir
Thanks for your detailed answer. It's good to see you have
achieved the purpose partially by using static methods.
Still, we cannot create objects on the stack rather it
allows to create objects only on the heap. This is because,
we have to call the destructor using delete. You have
provided static methods to do that.
The compiler will not allow to create stack objects since
it cannot be able to invoke the destructor when unwinding
stack.
I do not have an idea how to fulfill this requirement.
Anyway, you have rolled out the solution to some extent.
Thanks.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Name four predefined macros.
What is the purpose of templates in c++?
What is function overloading c++?
Is c++ the hardest programming language?
What is c++ vb?
Can a constructor return a value?
What is the iunknown interface?
How are pointers type-cast?
Is c++ harder than java?
Why do we need c++?
What is scope operator in c++?
What is istream c++?
Carry out conversion of one object of user-defined type to another?
What is an operator in c++?
Can we use this pointer inside static member function?