new is a language construct that dynamically allocates memory from free store and initialises the memory using the constructor.

learn more… | top users | synonyms (1)

0
votes
0answers
18 views

C++ memory management and Misra

I need some clarification about c++ memory management and MISRA guidelines.. I have to implement one program that it's MISRA compatible so I have to respect a important rule: is not possible to use ...
12
votes
2answers
161 views

Is calling delete on the result of a placement delete which used operator new okay?

If I do struct MyStruct { ~MyStruct() { } }; void *buffer = operator new(1024); MyStruct *p = new(buffer) MyStruct(); // ... delete p; // <---------- is this okay? is the delete ...
0
votes
2answers
27 views

New() method used in class definition to return a new object of itself in Ruby

I'm studying this snippet: def self.from_file(file_name) new(File.readlines(file_name)) end How does this code work? Does it only work for class methods? I understand this is supposed to return a ...
1
vote
3answers
53 views

Managing destructors with pre-allocated memory and arrays

Hello So I'm experimenting with creating objects and arrays with preallocated memory. For instance I have this following code: int * prealloc = (int*)malloc(sizeof(Test)); Test *arr = new(prealloc) ...
2
votes
3answers
50 views

size_t parameter new operator

I have a point in my mind which I can't figure out about new operator overloading. Suppose that, I have a class MyClass yet MyClass.h MyClass.cpp and main.cpp files are like; //MyClass.h class ...
0
votes
6answers
69 views

Instantiate objects without using new operator

In one of the java interview, the following question is asked: In java is there a way to instantiate an object without using new operator? I replied to him that there is no other way of ...
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> ...
0
votes
2answers
89 views

C++ New and Delete Class Members

In the class named Appointment, I am trying to allocate space for the members char *subject and char *location. class Appointment { char *subject; char *location; } In the constructor, I ...
1
vote
3answers
62 views

operator new[] allocates only one element regardless of how many are requested (C++) [duplicate]

For an introductory C++ course assignment (due tonight, of course!), I have to implement my own Vector class. Most everything seems to be working, except that I noticed in VS2012's debugger that it ...
1
vote
1answer
89 views

Bypass override of operator new in C++

Is there a way to achieve a bypass of an override of operator new? Something like this: void* ::operator new( std::size_t size ) { void *p = ( ::operator new( size ) ); // But original, _not_ ...
6
votes
4answers
191 views

Is it considered good style to dereference `new` pointer?

To avoid keep having to use -> and instead work directly with the object, is it acceptable practice to do: obj x = *(new obj(...)); ... delete &obj;
8
votes
2answers
111 views

operator new(n) versus new unsigned char[n] for placement new

I'm allocating memory that will later be used for constructing objects with placement new. Should I be using operator new(n), or should I be using new unsigned char[n]? Why?
1
vote
3answers
93 views

What's the standard way to avoid constant dereferencing after using `new` keyword?

The new keyword hands you back a pointer to the object created, which means you keep having to deference it - I'm just afraid performance may suffer. E.g. a common situation I'm facing: class cls { ...
1
vote
1answer
50 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 ...
3
votes
1answer
87 views

Why should I prefer using the free store over the heap?

In Exceptional C++, Herb Sutter wrote in Item 35 as a guideline: Prefer using the free store (new/delete). Avoid using the heap (malloc/free). Why should I? If an implementation chooses to ...
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 ...
0
votes
4answers
94 views

Static vs New Object

public class A { public void doSomething() { /*code*/} } The doSomething method is in no way referencing the state of object A so by that logic it could be static. What is the difference ...
2
votes
5answers
83 views

c++ new operator usage issue

I just accidentally write the code below. It is compiled using gcc 4.4.7 in linux environment. int main () { new int; return 0; } I am surprised the compiler does not indicate any ...
2
votes
3answers
63 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 ...
2
votes
4answers
74 views

C++ uninitialized array of class instances

I've been searching but couldn't find an answer to this. Is there a way to tell the new operator to not call the class constructors? MyObject* array = new MyObject[1000]; This will call MyObject() ...
1
vote
4answers
62 views

Multi-dimensional dynamic arrays in classes in C++

I am a relative beginner to C++. I am working on a model related to forecasting property financials, and I am having a few issues getting my data structures setup. A bit of background - the specific ...
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 ...
1
vote
3answers
123 views

Operator new for Arduino

I've been told (specifically in an answer to C++ Standard Library on Arduino, and in Stack Overflow question C++ string and Arduino String. How to combine them?)) that the Arduino compiler does not ...
0
votes
2answers
35 views

Can we overload malloc()?

i went through overloading new and delete, I was reading in a book that the difference between new and malloc is that new call the constructor,returns the type of calling variable and the third ...
2
votes
1answer
74 views

C++ Memory Leak new operator

I need to identify which objects are destroyed AND if there is any memory leaks on this code. void myfunc() { Photo a(1, 2); Photo* pt = new Photo(2, 3); throw runtime_error("to test ...
0
votes
1answer
44 views

override default new operator for an array of a class C#

I am using pinvokes to call native code. if I want to create an array of the native objects I currently do the following public class MyClass() { // allocate a single myClass; public ...
0
votes
1answer
54 views

Operator New in function call

void F(A* a) { delete a; }; F(new A()); Will the delete operator release the allocated memory or i must create and delete the object like this: F(A* a) {} A a = new A(); F(a); delete a;
0
votes
1answer
45 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
2answers
76 views

sYSMALLOc assertion failed when using “new” keyword

EDIT: For clarity's sake, I'll leave the question as it is. The problem seems to be that the Kameleon class uses boost, and since my own code also uses it there are probably conflicting ...
1
vote
4answers
103 views

new and delete Memory Management out of scope

void f(const Fraction& a) { Fraction b = a; Fraction* c = new Fraction(3, 4); Fraction* d = &a; Fraction* e = new Fraction(7, 8); Fraction* f = c; delete f; } Which values do I ...
2
votes
3answers
74 views

Size of array defined with new? [duplicate]

Is there a function (that could be written) which allows to know the size of an array defined with new: int *a=new int[3]; *a=4; *(a+1)=5; *(a+2)=6; Thanks!
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
2answers
61 views

C++ new - memory substitution and scope resolution

I'm looking at the following code: // operator new example #include <iostream> // std::cout #include <new> // ::operator new struct MyClass { int data[100]; int kk; ...
0
votes
1answer
39 views

Can you overload the operator new in javascript ? What will it do?

I am trying to make a website work on ie8. I have found the following js code: var autocompleteAddressController=(function(){ var my={}; //... my.new=function(val){ //... }; }); And ...
3
votes
2answers
94 views

Is such assignment a good idea in C++

A lot of classes has assignment operator (operator=) the same code as in destructor and than very similar code of copy constructor. So is it good idea to implement the assignment in such way? ...
1
vote
4answers
96 views

Detecting stack or heap allocation

I have a class I’d like to be able to set a flag in that says if it is heap allocated so it can properly clean up after itself and not try to delete itself if it’s on the stack. The problem is...I ...
1
vote
1answer
113 views

how to delete two-dimentional double array

I wrote two functions - one to create two-dimentional double array, and another one to delete it. double** createMatrix(int n) { double **a = new double *[n]; for (int i=0; i < n; i++) ...
0
votes
3answers
80 views

Does this contain a memory leak? [closed]

Does the code below contain a memory leak. I suspect it does but the tools I use to detect them(Visual Studio + Parasoft c++ test) aren't flagging up anything. If it is how would I fix it? //A ...
1
vote
1answer
35 views

Strange Javascript 'new' form

I found next form of new operator in the less documentation. var parser = new (less.Parser) ({ pathes [ '.', './css' ], filename: 'style.less' }); What the differences ...
2
votes
1answer
83 views

Bad performance when using templates and new allocation

there is some really strange behavior when using the new keyword to allocate memory in the constructor of a templated class: The program executes very slowly when compared to the untemplated code. ...
0
votes
1answer
88 views

Assigning operator new() to a function pointer?

I'm trying to define a class which can be passed an "object allocator" function and takes the template object's operator new() as the default argument. I have the following code: template<class ...
3
votes
5answers
170 views

If a struct is a value type why can I new it? [duplicate]

In C# structs are value types, but I am able to new them as if they are reference types. Why is this?
1
vote
1answer
109 views

alignas specifier and new, c++11

My question is rather simple; Does the alignas specifier work with new? That is, if a struct is defined to be aligned, will it be aligned when allocated with new?
0
votes
1answer
76 views

syntax of operator new in c++ new to me

i am new with c++ and i have a piece of code below that i am unable to understand from_net_fifos = new my_fifo_t <net_cmd_t> ** [NUM_PRIORITIES]; To be specific, I dont get what the ** ...
1
vote
2answers
90 views

I seem to have dissapearing pointers

ok thanks for the help everyone heres everything relevent that i can think of: gamemanager.h" #include "item.h" #include "hero.h" class gamemanager { public: void acquireItems(hero ...
-6
votes
2answers
50 views

What happens when operator new returns address in this code “new T”? [closed]

class T{ public: T(){} }; int main () { T *t = new T; //line 8 } I mean how the code looks like before enter to constructor? For example, in line 8 operator new returns address, and then the ...
0
votes
2answers
98 views

Allocate multidimensional array using new

When I allocate multidimensional arrays using new, I am doing it this way: void manipulateArray(unsigned nrows, unsigned ncols[]) { typedef Fred* FredPtr; FredPtr* matrix = new FredPtr[nrows]; ...
3
votes
2answers
320 views

C++11 smart pointers always instead of new/delete?

In C++11 should we always use unique_ptr or shared_ptr instead of new/delete? How is it with performance, are smart pointers much slower?
-1
votes
2answers
57 views

What benefits provide !! (double not) operator? [duplicate]

I have faced with a javascript code part like this: if(!!something){ ... } I guess, that this operator should fix some issues, but I can't understand how. EDIT: Does using of "double not" provide ...

1 2 3 4 5 24