Tagged Questions
0
votes
4answers
96 views
Deleting objects in C++, and the new keyword
A few questions:
I was looking at the following code for a linked list on www.cprogramming.com:
struct node {
int x;
node *next;
};
int main()
{
node *root; // This will be the ...
2
votes
3answers
82 views
What means 'destroying' memory by delete operator in C++?
I would like to know what happens to memory that is destroyed by "delete" operator in C++.
Is 'destroying' memory in such way means setting given pieces of memory to 0 or something else?
-1
votes
3answers
75 views
Strange behaviour with a vector of pointers
I'm having a bit of trouble understanding the output that I get when I run this simple piece of code
#include <vector>
#include <iostream>
#include "LxUNIXsys.h"
using namespace std;
int ...
0
votes
1answer
107 views
Deallocating memory from a vector of vectors of pointers
I'm creating a particle physics simulator and I need to make proper memory management.
I've found convenient that my method propagates several particles at once so this method returns a vector of ...
2
votes
4answers
68 views
If object is supposed to exist during all run of program don't need to delete?
After reading this answer about what is memory leak one can conclude that if object is supposed to exist during all run of program, and was creating via new, there is no need to call delete on such ...
1
vote
0answers
46 views
Ncurses 'new_item' function mem leak or what am i doing wrong?
I'm making a calendar in Ncurses, which means I have to dynamically allocate and free memory. The thing is that Valgrind --leak-check=full shows memory leaks in the new_item function. Here is my code. ...
0
votes
1answer
95 views
How to delete from nested STL containers
This is for homework. I have the program functioning properly, but I'm having trouble getting rid of the memory leaks.
I have a Class object.
I have a Class objectPtr, which has a pointer to an ...
41
votes
15answers
2k views
Why do I need to delete[]?
Say I got a function like this:
int main()
{
char* str = new char[10];
for(int i=0;i<5;i++)
{
//Do stuff with str
}
delete[] str;
return 0;
}
Why would I need ...
0
votes
2answers
67 views
Delete return memory problems
I am writing a simple program for working with structur in C++. But there is a problem with memory. When my program calling a delete_element function it return memory's problem, but delete_all_list ...
0
votes
3answers
200 views
Memory allocated with new int[10] must be deallocated with delete[]
Statement:
Memory allocated with new int[10] must be deallocated with delete[].
So..
new int[10];
Then how do I delete it?
EDIT:
Thank you guys :)
I think Wilson, Paul, Tim etc. are ...
1
vote
3answers
68 views
How do I “reset” a buffer?
Say I create a member variable pointer pBuffer. I send this buffer into some unknown land to be filled with data. Now say pBuffer has an arbitrary amount of data in it.
Q: Is there a way to reset ...
0
votes
5answers
171 views
Cannot delete unsigned char* array
In one of my objects, I create an unsigned character array member to store some image data:
unsigned char* imageData;
and in the constructor I initialize it with new:
MyObject::MyObject()
...
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()
{
...
3
votes
2answers
123 views
Why there's no error when I delete twice the same memory?
MySinglyLinkedList.h:
#include <iostream>
template<class T> class LinkedList;
template<class T>
class LinkedNode {
public:
LinkedNode(T new_data):data(new_data) {; }
...
1
vote
3answers
489 views
delete C++ structure from STL list using iterator
I have this test program. I don't know how to delete struct in the list using iterator.
#include<iostream>
#include<list>
using namespace std;
typedef struct Node
{
int * array;
...
0
votes
1answer
84 views
delete the memory allocated for list
Have a look at the following code. In this code at the start of execution the memory usage is 1020K. but at the end of execution the memory usage is 1144K. can somebody help me identify the memory ...
0
votes
1answer
58 views
RemoveFromSuperview is not cleaning-up memory
I'm programmatically creating labels in a function and putting them into an NSMutableArray, then I delete them from another function.
The problem is that the labels actually disappear from screen but ...
3
votes
2answers
104 views
I don't understand what I'm doing wrong with my de-allocation of memory
So I have a linked list getting created correctly, linked properly but when I try to de-allocate memory I can't seem to delete any node, the list still exists.
Code for my list deconstructor:
void ...
-1
votes
3answers
66 views
Passing objects created by new[] to a class, destructor for deletion necessary? [closed]
I don't know if I should create a destructor to delete the members of Controller that are set to the parameters passed by main which are created dynamically, because the constructor never used the new ...
0
votes
1answer
243 views
Qt : crash due to delete (trying to handle exceptions…)
I am writing a program with Qt, and I would like it to show a dialog box with a Exit | Restart choice whenever an error is thrown somewhere in the code.
What I did causes a crash and I really can't ...
1
vote
4answers
111 views
c++ class constructed by passing an external pointer or by internally calling new, can I naively delete this pointer on destruction?
I have class A which has a pointer to class B as one of its fields:
class A {
private:
B *ptr;
public:
A(B*);
A();
~A();
}
A::A(B *ptr)
{
this->ptr = ptr;
}
A::A()
{
...
0
votes
2answers
104 views
Delete created Qt elements and subclasses
I have a question about Qt. I am wondering how it is I should delete all the pointers I create. For example:
.h file
#ifndef MAINCALENDAR_H
#define MAINCALENDAR_H
#include<QWidget>
#include ...
0
votes
2answers
158 views
C++ Delete Memory allocated in another function?
So I just finished my implementation of merge sort but it occurred to me that I didn't delete the memory returned from recursive calls that I was discarding, so I added delete statements for array1 ...
0
votes
2answers
43 views
How to delete exact file from filesystem passing OS features?
I have:
Installed OS with some filesystem as ext3 or ntfs or smth else
exact file on this filesystem like Ozzy.mp3
I want:
To delete this file passing OS and its features, but delete only this ...
0
votes
3answers
196 views
C++ Visual Studio 2008, delete() operation crashes program
Since some days, I have been facing a problem in Visual Studio 2008, related to my C++ software.
If I set Visual Studio settings to "Release Win32" mode, it works fine.
But if I set it to "Debug ...
0
votes
2answers
107 views
Where/how to delete an object within another object, outside the function that it was created in
In order to solve this problem Bad memory management? Class member (boolean) value greater than 1, in recursion function, I ran the whole program under Valgrind and found a few memory leak problems ...
2
votes
3answers
2k views
Does dictionary's clear() method delete all the item related objects from memory?
If a dictionary contains mutable objects or objects of custom classes (say a queryset, or a even a DateTime), then will calling clear() on the dictionary delete these objects from memory?
Does it ...
0
votes
2answers
325 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
497 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
1
vote
3answers
126 views
Is it possible to call the destructor without knowing the type?
Is it possible to call the destructor of an object without knowing the class type without using delete? I am asking because I am working on an allocator (for fun/practice) and I am using ...
0
votes
3answers
200 views
Visual C++ 2010 slow at freeing array pointers
At the end of my application I simply call the following to clean up.
delete [] array1;
delete [] array2;
delete [] array3;
delete [] array4;
delete [] array5;
delete [] array6;
delete [] array7;
...
0
votes
6answers
395 views
C++ delete [] - how to check if “all is deleted”?
I was wondering, throughout a program I am using a lot of char* pointers to cstrings, and other pointers.
I want to make sure that I have delete all pointers after the program is done, even though ...
0
votes
1answer
66 views
Do I need to release COM Object if only pass it an instance of anothe COM object
Let's say I have the following scenario
ComObjectClass firstCOMObject = new ComObjectClass();
ComObjectClass secondCOMObject = firstCOMObject;
of course I have to release the firstCOMObject like ...
3
votes
4answers
200 views
Why I have to call delete on the “original” pointer?
I would like to know why in the following code the first delete wont free the memory:
#include <list>
#include <stdio.h>
struct abc {
long a;
abc() {
puts("const");
...
0
votes
7answers
194 views
How can I understand if a pointer is deleted in C++
When I write a code like this, it prints "not deleted". How can I 100% sure whether a pointer is deleted or not? Thanks for any help...
int* a = new int;
*a = 5;
delete a;
if (!a) ...
0
votes
4answers
465 views
Delete a pointer array without deleting the pointed objects in memory
I would like to know if there is a way to delete a pointer array without touching the pointed objects in memory.
I'm writing a restruction routine for a HashSet I implemented a couple of days ago, so ...
1
vote
3answers
79 views
deleting memory and effect on data in concerned locations
I am relatively new to programming so this may well sound like a stupid question to you seasoned pros out there. Here goes:
In C++, when I use the delete operator on arrays, I have noticed that the ...
0
votes
3answers
163 views
Simulating a simple memory leak in Visual Studio with a bit confusing result
Here is one very simple question(or at least at first sight).Let's say we have the following procedure:
void procedure(void)
{
int x = new int;
x=42;
}
When I call to this ...
0
votes
3answers
481 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, ...
6
votes
4answers
169 views
Is the correct type required for the delete operator in C++?
void * intptr = new int;
delete (int *) intptr;
Is the (int *) typecast required?
1
vote
4answers
907 views
Does delete [] deallocate memory allocated by pointers to pointers
I have an array of pointers to other objects called Comparable* array (inside a template for a class).
I understand that delete deletes memory referenced by a pointer, and that delete [] deallocates ...
1
vote
3answers
96 views
How do I properly delete an array of doubles through a pointer after the pointer has been iterated?
I have created an array of doubles using the following code:
double *points = new double[(ii+1)*(jj+1)*(kk+1)*3];
I realize that in order to delete the array, all I have to do is:
delete[] points;
...
5
votes
6answers
489 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 ...
4
votes
3answers
745 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
1answer
475 views
Error: calling delete twice on the same memory location
I wrote this function in C++ as part of a bigger program:
Object Single_list<Object>::pop_front() {
//Single_node<Object> *tmp_front;
//Object hold;
if (empty()) {
...
5
votes
7answers
189 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 ...
3
votes
2answers
490 views
How can delete Ajax Request from browser memory?
i have a simple consult, how can delete the ajax request store into the memory, i try to explain i'm will trying to get.
I have a form for edit a table into database.
all run well the first time, ...
2
votes
4answers
964 views
How to delete an object in a set
In my c++ program, I create objects in one function using new. These objects are inserted into a set. When I want to remove objects from the set, I use an iterator in a for-loop. When I remove the ...
0
votes
7answers
3k views
C++: How to free memory of dynamic struct array
As someone who never dealed with freeing memory and so on, I got the task to create a dynamic array of struct and create functions to add or delete array elements. When deleting I have to free the ...
0
votes
2answers
99 views
How to discard changes of filestream
I have a simple question. I may be right but I want you people to ensure it since I am new to .net.
StreamWriter SW = new StreamWriter(strFile);
SW.writeline("Hello");
SW.writeline("How are you?");
...


