vote up 1 vote down star

I have a class whose object must be created on the heap. Is there any better way of doing this other than this:

class A
{
public:
  static A* createInstance(); //Allocate using new and return
  static void deleteInstance(A*); //Free the memory using delete

private:
  //Constructor and destructor are private so that the object can not be created on stack
  A(); 
  ~A();
};
flag

3 Answers

vote up 2 vote down check

This is pretty much the standard pattern for making the object heap-only.

Can't really be simplified much, except that you could just make the destructor private without forcing the use of a factory method for creation.

link|flag
vote up 3 vote down

I'd suggest making only the constructor private and return a shared_ptr to the object instead.

class A
{
public:
  static sharedPtr<A> createInstance(); //Allocate using new and return

private:
  //Constructor is private so that the object can not be created on stack
  A(); 
};
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.