News:

This week IPhone 15 Pro winner is karn
You can be too a winner! Become the top poster of the week and win valuable prizes.  More details are You are not allowed to view links. Register or Login 

Main Menu

C++ tips - Preventing automatic variables of a class

Started by ben2ong2, October 07, 2006, 03:56:19 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ben2ong2

PROBLEM: You are not allowed to view links. Register or Login (Howard Ferguson),

I wish to define a class in a library which the library user
can create by dynamic allocation via the new operator, but
I want to prevent him from creating automic instances.


RESPONSE: You are not allowed to view links. Register or Login (Nikki Locke), 6 Jan 93

Leave the constructors public. Make the DESTRUCTOR private. Provide an
inline member function ...

   void destroy() { delete this; }

Users have to call destroy instead of delete, but they won't be able to
create automatic, static or extern objects of the class.

You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login