Tagged Questions
The delete-overload tag has no wiki summary.
7
votes
2answers
171 views
Correct use of `= delete` for methods in classes
Is the following snipplet correct for un-defining all otherwise methods and constructors for a class?
struct Picture {
// 'explicit': no accidental cast from string ti Picture
explicit ...
5
votes
2answers
7k views
Overloading global operator new/delete in C++
I am trying to overload the global operator new and delete for a performance sensitive application. I have read the concerns described at ...
4
votes
3answers
155 views
Does dynamic_cast work inside overloaded operator delete?
I came across this:
struct Base {
void* operator new (size_t);
void operator delete (void*);
virtual ~Base () {} // <--- polymorphic
};
struct Derived : Base {};
void Base::operator delete ...
3
votes
2answers
446 views
Overloading Delete Operator in c++
In my code, i have overloaded the new and delete operators to get filename and line number. In my code I am using map and stack. When i do erase a particular value from the map it just call my ...
3
votes
4answers
468 views
Difference between operator new and operator new[]?
I've overloaded the global operator new/delete/new[]/delete[] but simple tests show that while my versions of new and delete are being called correctly, doing simple array allocations and deletes ...
2
votes
1answer
236 views
Overloading operator delete in a base class
From the C++ standard (ISO/IEC 14882:2003(E)), ยง12.5.4, about overloading operator delete:
If a delete-expression begins with a unary :: operator, the deallocation function's name is looked up in ...
2
votes
5answers
453 views
overloading operator delete, or how to kill a cat?
I am experimenting with overloading operator delete, so that I can return a plain pointer to those who don't wish to work with smart pointers, and yet be able to control when the object is deleted.
I ...
1
vote
6answers
2k views
How do I override delete() on a model and have it still work with related deletes
class Widget(models.Model):
title = models.CharField(max_length=255)
class WidgetFile(models.Model):
widget = models.ForeignKey(Widget)
def delete():
# do some custom hard drive ...
1
vote
1answer
568 views
overloading delete, pure virtual func call
So i want to overload delete of a abstract virtual class. This will call deleteMe() in the derived class which is in another lib. This is to prevent error/crashes mention here ...
1
vote
4answers
224 views
delete overload, recursive overflow
Hey guys i wrote a quick test. I want delete to call deleteMe which will then delete itself. The purpose of this is so i can delete obj normally which are allocated by a lib. (i dont want any crashes ...
0
votes
1answer
112 views
Global operator delete - grammar
I have inherited an unchangeable C struct that contains pointers to (alloc'd) memory.
typedef struct {
int id;
int * val;
} T;
I would like to use new and delete on these objects, ...