The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
29 views

Overloaded operator new and matching delete

I'm overloading operator new/delete in a subclass, and I'm noticing a behaviour that seems rather odd to me. Take a look at the sample code below: #include <stdlib.h> #include <stdio.h> ...
9
votes
1answer
107 views

Must I replace global operators new and delete to change memory allocation strategy in third party code?

Short story: We need to replace memory allocation technique in third-party library without changing its source code. Long story: Consider memory-bound application that makes huge dynamic allocations ...
2
votes
3answers
62 views

Vector with dynamically allocated memory cannot delete the last

In my code I have a vector that holds integers. Using the first loop I create 100 new integers and push them on the vector. The next loop then deletes all the dynamically allocated integers with the ...
0
votes
5answers
83 views

Confused with delete keyword opearation in C++

I would like to know how delete works? In main function I have deleted the cfact object. But still the cfact->Hello() works instead of throwing an error. While debugging I found while delete ...
0
votes
1answer
44 views

class overloaded new and delete vs placement new with a bespoke memory class

I am investigating the pros and cons between using class overloaded news and deletes vs placement news. By this I mean, either declaring every class I may wish to new and delete with their own ...
0
votes
5answers
82 views

Does memory get freed at the end of a function if you don't use delete? [duplicate]

Say you have a function like: void foo() { char* pt = new char[10]; //do stuff with pt } Since the pointer was created locally, will the memory be freed once the function terminates? Or do you ...
0
votes
4answers
115 views

How do I know if a pointer has been assigned data via 'new'?

Say I have a pointer like this: int *thingy; At some point, this code may or may not be called: thingy=new int; How do I know if I can do this: delete thingy; I could use a bool for every ...
-2
votes
1answer
88 views

Delete in c++ program is not freeing up memory [closed]

I created an object which has few integer variables, and one char memory block say which is allocated with memory of 300-500 bytes as its members . After that this object was pushed in to vector by ...
3
votes
1answer
66 views

Why would memory alloc/freeing fail in a 32-bit plug-in running in a 64-bit app but not in a 32-bit app?

I'm developing audio plug-ins for both Windows and Mac (VST and AU), and I've run into a problem that only occurs when opening the plug-in in a 64-bit host DAW (in my case Reaper) in OSX 10.8. The ...
6
votes
4answers
219 views

C++ Virtual operator delete?

Is it possible to have a virtual delete operator? I'm not talking destructor, I mean the actual operator overload. Minus the fact that it is (in most cases) a big bad idea to overload new and delete ...
6
votes
1answer
282 views

overloading new and delete operator with optional arguments

#include <new> #include <cstdlib> #include <iostream> #include <stdexcept> struct foo {}; inline void* operator new(size_t size, foo*) throw (std::bad_alloc) { std::cout ...
12
votes
1answer
174 views

After p=new string[0] and p=new int[0], why the string version crashes when delete[] p?

I have two blocks of code about new[] and delete[]: 1) #include <string> int main() { std::string *p = new std::string[0]; delete[] p; return 0; } 2) In this case, I merely change ...
0
votes
1answer
166 views

How to free an array of structure and objects in C++?

The structure of the program is as such, there is a header file manager.h in which C++ class is defined with data members and member functions. Then in a manager.C file the member functions are ...
1
vote
0answers
150 views

C++ operator delete overloading

I am building my application with a third party library which seems to have an overloaded operator delete defined. I was investigating a dump and I noticed that the third party operator delete is ...
1
vote
2answers
137 views

Basic new/delete operator logging

I'd like to overload global and non-global new/delete operators for logging. As I just want to add logging informations, I'd like to keep the standard behavior of this operators. Is there a way to ...
1
vote
1answer
184 views

How to override new in C++ when using the Boost libraries?

I've overridden the global new and delete operators for my project, but I'm having trouble making it all work with the Boost libraries. I've implemented the solution here: Macro to replace C++ ...
2
votes
4answers
238 views

Custom Stack Allocator, override Delete

I want to create a global stack in my application, and to place certain objects on to this stack. These objects are not of a fixed size. I currently have; static char contextStack[CONTEXT_MAX_SIZE]; ...
0
votes
2answers
78 views

Defintion of the global new and the delete operator

Which library has the definition for the global new and the delete operator ? Specifically which file in the library contains the definition for these operators?
2
votes
5answers
503 views

Does 'delete pointer' simply mean '*pointer = 0'?

# include <iostream> int main() { using std::cout; int *p= new int; *p = 10; cout<<*p<<"\t"<<p<<"\n"; delete p; cout<<*p<<"\t"<<p<<"\n"; ...
1
vote
5answers
253 views

C++ delete operator on pointer, pointer not nulling

I'm trying to implement a directed graph in C++. However, I'm having trouble with my RemoveEdge function, after I call the function and it uses the delete operator on the pointer and set the pointer ...
3
votes
3answers
367 views

How can a delete[] operation crash while the destructor succeeds? (in C++)

I have a class Foo, which has a (simple) destructor. Some other class contains an array of Foo objects (called foolist), in the destructor of that class, I do: delete[] foolist; This crashes (gdb ...
2
votes
3answers
189 views

c++ arrays and dynamic memory [duplicate]

Possible Duplicate: How does delete[] know it's an array? (C++) How does delete[] “know” the size of the operand array? suppose we have the following class class Data { public: ...
4
votes
3answers
98 views

Removing falsies from JavaScript object

So I write a short function to remove members from an object that have falsy values: for (var key in object) { if (!object[key]) { delete object[key]; } } A couple days later I ...
1
vote
5answers
120 views

Should I call class destructor in this code?

I am using this sample to decode/encode some data I am retrieving/sending from/to a web server, and I want to use it like this: BOOL HandleMessage(UINT uMsg,WPARAM wParam,LPARAM lParam,LRESULT* r) { ...
6
votes
7answers
1k views

C++ array delete operator syntax

After I do, say Foo* array = new Foo[N]; I've always deleted it this way delete[] array; However, sometimes I've seen it this way: delete[N] array; As it seems to compile and work (at least in ...
2
votes
5answers
2k views

How does delete deal with pointer constness?

I was reading this question Deleting a const pointer and wanted to know more about delete behavior. Now, as per my understanding: delete expression works in two steps: invoke destructor then ...
6
votes
6answers
14k views

overloading new/delete

I'm making a little memory leak finder in my program, but my way of overloading new and delete (and also new[] and delete[]) doesn't seem to do anything. void* operator new (unsigned int size, const ...
391
votes
13answers
311k views

JavaScript Array Delete Elements

What is the difference between using the delete operator on the array element as opposed to using the Array.splice method? For example: myArray = ['a', 'b', 'c', 'd']; delete myArray[1]; // or ...