I'm working on a garbage-collection mechanism for a family of objects in one of my projects. What I want to have is allocate these objects dynamically with new and never having to call delete.
This is possible by overloading operator new to call into a specialized allocator object that implements GC for these objects (triggering collection when too much memory has been allocated). However, I have a problem: the user can still just do delete on these objects, and I don't want that.
Making operator delete private is problematic because of the way C++ handles failures in construction - if operator new is public, operator delete should be too. The alternative that's sometimes suggested is just make both operator new and operator delete private and only expose factory creation methods to the user. I can do this, but it feels less clean and requires extra code to write.
EDIT: Another approach is make operator delete empty (or throw an exception). Then, to actually release the objects my GC will call the destructor explicitly and then release the memory with the global ::operator delete.
Any other ideas?
deletemyself in the garbage collector (could've made it afriendif that operator were private). – Eli Bendersky Mar 15 '11 at 16:42deletesthe object, the delete expression calls the destructor and then operator delete, which thows, and some time later you GC the object] – Steve Jessop Mar 15 '11 at 17:09