How to avoid a class from instantiation?
Answers were Sorted based on User's Feedback
Answer / vinay bondade
Have a Pure Virtual function in the class. This will not
allow to create an object of the class and hence cannot be
instatiated. But its a different thing to inherit the class
and give definition to Pure Virtual function, But the class
alone cannot be instantiated.The class hence,is also called
Abstract Base class.
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / chandrakant
make the class Abstract it will not be instantiated
and the pure virtual function is used to avoid the base call
function to be get called if we make a function as virtual
only a derived class function will get called
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sanish joseph
Make an abstract class.abstract class cant b intialized.
I think so....
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / achal
Making a constructor private is perfectly legal.
But now u can't create instance of that class.
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / maniac_2004
if you want to construct a class whos constructor is private
then use a static method which constructs the object and
returns the pointer
class A
{
private: A();
public:
static A * createInstance();
};
A* A::getInstance()
{
return new A();
}
main(){ A::createInstance();}
This is similar to the "singleton" pattern...
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vidushi
Make the class abstract
abstract class abc
{
.....
.....
};
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ravi
We can aviod a class from instantiation by making all
variants of constructors as private. We can provide user
defined function like create member function under public
scope and call this private construcotrs from this create
function to create an object for that class.
Is This Answer Correct ? | 3 Yes | 5 No |
Answer / rsn
Yes, I agree with Ravi. Classes can be prevented from
instantiating and also from getting inherited using provate
constructors. The initialisation can be done using member
functions in which case it is called "clone" functions(I
hope so, Pls correct me if i'm wrong!).
Is This Answer Correct ? | 2 Yes | 4 No |
What are the types of container classes?
write a program that a 5 digit number and calculates 2 power that number and prints it.
2 Answers Vimukti Technologies,
What is difference between malloc()/free() and new/delete?
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
Tell me difference between constant pointer and pointer to a constant.
What is the use of function pointer?
What are the implicit member functions of class?
Why is c++ still used?
What are destructors?
What is abstraction with real time example?
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
What is c++ best used for?