Tagged Questions
1
vote
1answer
49 views
New and delete operators without effect on the contents of a Deque of pointers to this class
I have a problem that I have been tackling since the last two days, but as a rather inexperienced programmer it is normal I assume. My question may have an easy solution, but I couldn't find a quick ...
0
votes
3answers
113 views
How do I delete this 2D array in c++
In simple 1D array :
node *nodes = new node[MAX_NODES];
deleting by
delete [] nodes;
deletes all the nodes allocated in the array.
But in this case :
float (*buildingArray)[3] = new ...
0
votes
3answers
89 views
Override delete operator
I want to override delete operator in my class. Here's what i am trying to do,but not succeeding.
class Complex{
void *operator new(size_t s);
void operator delete(void *ptr);
...
0
votes
2answers
89 views
why the amount of used memory increases even after the memory is released?
I found that the amount of used memory increases even after the memory is released in my program. So I wrote two simple C++ test programs to verify it.
#define NUM 1000000
void Test1()
{
...
1
vote
2answers
278 views
new() and delete() as operators in C++?
What is the use or what is the reason for new() and delete() to be implemented as operators in c++ ? What are the advantages of making it an operator instead of a function?
0
votes
2answers
76 views
Error deleting a multidimensional matrix
When deleting a multidimensional matrix with this destructor:
matrix::~matrix(){
int i;
for(i=0;i<n;i++){
delete[] user_matrix[i];}
delete[] user_matrix;}
I revive this ...
2
votes
5answers
87 views
Is it possible to remove one item at a time from a new int[]
int *ptr_Array;
ptr_Array = new int[5];
Is it possible to remove the last element in the array?
I can PUSH the ints on one at a time.
I can delete the whole array.
delete []ptr_Array;
ptr_Array = ...
-1
votes
2answers
76 views
Crash when deleting an object allocated dynamically in a different function
I wrote a simple program:
#include<iostream>
#include<list>
using namespace std;
list<int>& func();
int main(){
list<int> a = func();
delete &a;
...
0
votes
1answer
203 views
delete ptr vs delete [] ptr [duplicate]
Possible Duplicate:
Is delete[] equal to delete?
int main()
{
char *ptr = new char[10];
delete ptr; // or delete [] ptr;
}
delete [] is for arrays, and delete is for a single ...
2
votes
1answer
146 views
Valgrind claiming I am using malloc when using new
Running Valgrind against an existing codebase, I am getting a lot of "Mismatched free / delete/ delete[]" errors. Many of them are a repeat of one problem: it claims that at line XXX a delete ...
4
votes
3answers
144 views
How can you track memory across DLL boundaries
I want performant run-time memory metrics so I wrote a memory tracker based on overloading new & delete. It basically lets walk your allocations in the heap and analyze everything about them - ...
0
votes
3answers
383 views
Static factory methods and static objects memory leaks
I have a class with a static factory constructor which returns a pointer to the object created.
I have to declare the object as a static object inside a namespace but I don't know how to delete it ...
2
votes
4answers
118 views
crash in creating an array in the heap and delete it with/without shared_ptr
I am fully aware that if I want to create a smart pointer to an array the best way is to use
boost::shared_array<T>( new T[20] );
What I don't understand is the crash I have when a ...
0
votes
4answers
287 views
What are “::operator new” and “::operator delete”?
I know new and delete are keywords.
int obj = new int;
delete obj;
int* arr = new int[1024];
delete[] arr;
<new> header is a part of C++ standard headers. It has two operators (I am not sure ...
2
votes
4answers
244 views
Implicit new and delete operator killing perfomance
I am running very sleepy to profile my application and its showing me that 25% and 23% of the time spent by my function is doing new and delete respectively. I don't understand where this is ...
0
votes
2answers
298 views
Memory Allocation - Using delete properly
Hi all my program crashes because of delete [] meanings;, delete [] meanings;, delete [] temp_meaning; , when I remove these 3 lines it works fine, so probably I am using the delete wrongly ... can ...
7
votes
3answers
456 views
char* new and delete [] error when a string is assigned
I need a C++ refresher. Why does this gives a memory exception?
pear = new char[1024];
pear = "happy go lucky";
delete [] pear; // exception
2
votes
3answers
195 views
Why can't I reclaim my dynamically allocated memory using the “delete” keyword?
I have the following class:
class Patient {
public:
Patient(int x);
~Patient();
private:
int* RP;
};
Patient::Patient(int x) { RP = new int [x]; }
Patient::~Patient() { delete [] RP; }
...
0
votes
4answers
392 views
Memory leak c++ program
i`m new to c++ and i faced a new problem something with memory alloaction and leak here is my error log:
Dr. Memory version 1.4.6 build 2 built on Mar 7 2012 10:14:04
Application cmdline: ...
0
votes
4answers
104 views
What does the use of new require you to also call delete?
I am here stuck with a question in my C++ book with the following:
"What does the use of new require you to also call delete?"
Maybe you guys have an answer for that?
0
votes
4answers
302 views
how are delete and delete[] implemented?
When I use new [] to apply memory. In end , I use delete to free memeory(not delete[]).Must be memory leak ?
Two type:
builtin type, like int, char ,double ...
I am not sure.
class type.
I think ...
0
votes
4answers
97 views
How can I delete this object I created?
Take this program as an example:
class Piece
{
public:
Piece(bool color);
protected:
bool color;
};
Piece::Piece(bool color)
{
this->color = color;
}
//-----------------------------
...
1
vote
3answers
156 views
delete invokes the destructor
I am allocating memory to a object dynamically and then if i call delete what happens?
the destructor is called or delete function has a different way of handling memory??
consider the following ...
1
vote
4answers
246 views
Dealing with memory leaks in class new and delete operators C++
I enjoy using the operators new and delete in C++ a lot but often have a problem calling delete later on in the program's code. For instance examine the following code:
class Foo {
public:
string ...
2
votes
1answer
215 views
How serious is the new/delete operator mismatch error?
I have discovered the classic new/delete mismatch error in our codebase as follows:
char *foo = new char[10];
// do something
delete foo; // instead of delete[] foo;
Just how serious is this? ...
0
votes
2answers
220 views
Crash when trying to dynamically resize an array in C++?
Right now, I want to increase the size of the array using a function.
#include <iostream>
using namespace std;
void IncreaseArraySize(int* addr){
int* temp = new int[20];
for(int ...
0
votes
4answers
372 views
Operators new and delete in c++
I need some help with operators new and delete
I tried to create a class named big to handle huge numbers
#include <iostream>
using namespace std;
class big
{
protected:
char *a;
long ...
0
votes
3answers
194 views
Legality and morality if differeing scopes of 'new' and 'delete'
I am creating a dynamic array inside a function. The code (posted below) runs without any problem. I am wondering if the way I have written is the right way to do it or if it will create problems in ...
1
vote
5answers
528 views
C++ Destructors and Malloc'd Members
Lets say, for example, that I have a class that requires the use of some old C stuff (like pthreads or something), so for one reason or another, I've ended up with a malloc() call in my constructor, ...
3
votes
2answers
286 views
What are the limitations of overloading, overriding and replacing new/delete? (C++)
I understand that there are 3 general ways to modify the behaviour of new and delete in C++:
Replacing the default new/delete and new[]/delete[]
Overriding or overloading the placement versions ...
-2
votes
1answer
249 views
new and delete command of c++ in obj-c
i have an NSMutablearray of objects. the number of objects is set by user. in c++ i wuold use a for cycle and the 'new' command.something like this:
int fromuser, a;
for(a=0;a<fromuser;a++){
...
2
votes
1answer
140 views
How to save pointer to redefined operator?
I have overloaded new and delete operators. I want to save pointers to 'old' new and delete to call it into 'new' new and delete. For example:
#include "h.h"
void * operator new ( size_t size, ...
3
votes
4answers
187 views
C++ delete an object
I am not experienced in handling of the memory in a C++ program, so I would like a piece of advice in that case:
I want to create a new Object in a function in a class which is essential till the end ...
2
votes
3answers
288 views
C++ and virtual destructors
Apologies if this variant of the question has already been asked - but lets say I am writing a utility class in an application in which they may or may not be future derivations. I dont have any ...
0
votes
3answers
126 views
(c++) Dynamically allocating structures with vectors in them
If I have a dynamically allocated struct with a vector in it, when does the vector go out of scope? Will the vector destructor be called when I delete the struct, or do I need to force the destructor ...
0
votes
2answers
239 views
C++ linked binary search tree (DeleteTree)
I have to implement a binary search tree using C++ for one of assignments. I've created the class, and attempted to implement the InsertItem, PrintTree, DeleteTree methods for the class, I think I did ...
0
votes
3answers
463 views
New/delete[] and VirtualAlloc
#include <Windows.h>
#include <iostream>
using namespace std;
int main(void)
{
unsigned char* pFoo = new unsigned char[1000];
pFoo = (unsigned char*)VirtualAlloc(NULL, 1000, ...
0
votes
2answers
331 views
Why should we overload/override new and delete in C++? [duplicate]
Possible Duplicate:
Any reason to overload global new and delete?
Why should we overload/override new and delete in C++?
Give me an example of situation in which we should ...
27
votes
4answers
2k views
How should I write ISO C++ Standard conformant custom new and delete operators?
How should I write ISO C++ standard conformant custom new and delete operators?
This is in continuation of Overloading new and delete in the immensely illuminating C++ FAQ, Operator overloading, and ...
44
votes
7answers
8k views
Why would one replace default new and delete operators?
Why should would one replace the default operator new and delete with a custom new and delete operators?
This is in continuation of Overloading new and delete in the immensely illuminating C++ FAQ:
...
4
votes
5answers
251 views
Can a call delete on the pointer which is allocated with the placement new?
Can we call delete on the pointer which is allocated with the placement new? If no then why? Please explain in detail.
EDIT1:
I know that there is no placement delete. But I wonder why just delete ...
5
votes
6answers
473 views
delete[] Array of characters [duplicate]
Possible Duplicate:
delete[] supplied a modified new-ed pointer. Undefined Behaviour?
Let's say I've allocated a handful of characters using new char[number].
Will it be possible to delete ...
1
vote
2answers
333 views
Freeing abstract class pointers
In C++ I have a class A that has an abstract class pointer to allow for polymorphism contained in a class B, I have another pointer to an abstract class C that allocates a concrete instance of a child ...
0
votes
4answers
56 views
Why do you use the keyword delete?
I understand that delete returns memory to the heap that was allocated of the heap, but what is the point? Computers have plenty of memory don't they? And all of the memory is returned as soon as you ...
4
votes
3answers
713 views
how to detect double deletes or deletes on unallocated memory in C++?
I'm writing a debug versions of global delete/new operator to detect memory leaks, double deletes and delete on unallocated memory.
As far as "new" operator is concerned, I overrode the global new ...
0
votes
3answers
827 views
using 'new' to allocate memory dynamically in C++, failing
I am working on some C++ code and am having some problems with the function described below. I haven't used much C++ before, at least not for a long time and so i'm trying to learn as I go along to a ...
5
votes
7answers
185 views
where exactly in memory is count of allocated memory thats being used by delete?
int* Array;
Array = new int[10];
delete[] Array;
The delete knows the count of allocated memory. I Googled that it stores it in memory, but it's compiler dependent. Is there anyway to use get this ...
1
vote
4answers
383 views
Why would I overload operator new or operator delete? [duplicate]
Possible Duplicate:
Any reason to overload global new and delete?
In c++ you can overload new/delete operators, is there any benefit in doing so? since right after calling operator new it's ...
4
votes
1answer
372 views
C++ question about deleting array of class objects
Its almost common knowledge that the code below correctly frees the memory of 100 integers.
CASE A)
int* ip = new int[100];
delete [] ip;
And I think even for user defined classes it works:
CASE ...
0
votes
1answer
2k views
Error raised Debug Assertion Failed _BLOCK_TYPE_IS_VALID when delete is used
I am trying a simple code in C++ but I am getting Debug Assertion Failed _BLOCK_TYPE_IS_VALID error when I delete the pointer. I don't know what I am making wrong. here is my code.
...

