Tagged Questions

`new` is a keyword in many programming languages, generally used to instantiate an object.

learn more… | top users | synonyms

210
votes
14answers
11k views

In C++, why should `new` be used as little as possible?

I stumbled upon the Stack Overflow question Memory leak with std::string when using std::list?. One of the first posters says: Stop using new so much. I can't see any reason you used new ...
165
votes
6answers
14k views

Do the parentheses after the type name make a difference with new?

If 'Test' is an ordinary class, is there any difference between: Test* test = new Test; //and Test* test = new Test();
75
votes
9answers
25k views

C# Generic new() constructor problem

I'm trying to create a new object of type T via its constructor when adding to the list. I'm getting a compile error: The correct error message is: 'T': cannot provide arguments when creating an ...
51
votes
9answers
6k views

What is the 'new' keyword in JavaScript?

What exactly is the new keyword in JavaScript? JavaScript is not an object oriented programming language and therefore there are no classes, so it's probably not for creating instances of objects...
44
votes
4answers
6k views

C++ new int[0] — will it allocate memory?

A simple test app: cout << new int[0] << endl; outputs: 0x876c0b8 So it looks like it works. What does the standard say about this? Is it always legal to "allocate" empty block of ...
34
votes
3answers
6k views

Using “Object.create” instead of “new”

Javascript 1.9.3 / ECMAScript 5 introduces Object.create, which Douglas Crockford amongst others has been advocating for a long time. How do I replace new in the code below with Object.create? var ...
32
votes
6answers
6k views

Why should one replace default new and delete operators?

Why should 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: ...
30
votes
12answers
34k views

How does delete[] know it's an array? (C++)

Alright, I think we all agree that what happens with the following code is undefined, depending on what is passed void deleteForMe(int* pointer) { delete[] pointer; } The pointer could be all ...
29
votes
17answers
3k views

Any reason to overload global new and delete?

Unless you're programming parts of an OS or an embedded system are there any reasons to do so? I can imagine that for some particular classes that are created and destroyed frequently overloading ...
28
votes
11answers
1k views

malloc & placement new vs. new

I've been looking into this for the past few days, and so far I haven't really found anything convincing other than dogmatic arguments or appeals to tradition (i.e. "it's the C++ way!"). If I'm ...
26
votes
7answers
7k views

Create an empty object in JavaScript with {} or new Object()?

There are two different ways to create an empty object in JavaScript: var objectA = {} var objectB = new Object() Is there any difference in how the script engine handles them? Is there any reason ...
23
votes
6answers
1k views

Difference between object a = new Dog() vs Dog a = new Dog()

object a = new Dog(); vs Dog a = new Dog(); In both cases a.GetType() gives Dog. Both invoke same constructor (with same hierarchy). Then can you please tell me the difference between these two ...
20
votes
13answers
1k views

Would Lisp be extremely difficult for a new(ish) programmer to learn?

I've got a little experience with Python (enough to where I can do if/else/elif and some random number generation), but I've always had a weird fascination with the Lisp languages. I downloaded some ...
19
votes
9answers
709 views

C# The 'new' keyword on existing objects

I was wondering as to what happens to an object (in C#), once its reference becomes reassigned. Example: Car c = new Car("Red Car"); c = new Car("Blue Car"); Since the reference was reused, does ...
18
votes
4answers
565 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 ...
18
votes
11answers
1k views

Strings are objects in Java, so why don't we use 'new' to create them?

We normally create objects using the new keyword, like: Object obj = new Object(); Strings are objects, yet we do not use new to create them: String str = "Hello World"; Why is this? Can I make ...
18
votes
10answers
4k views

When should I use the new keyword in C++?

I've been using C++ for a short while, and I've been wondering about the new keyword. Simply, should I be using it, or not? 1) With the new keyword... MyClass* myClass = new MyClass(); ...
17
votes
6answers
2k views

What side effects does the keyword 'new' have in JavaScript?

I'm working on a plug-in for jQuery and I'm getting this JSLint error: Problem at line 80 character 45: Do not use 'new' for side effects. (new jQuery.fasterTrim(this, options)); I haven't had ...
17
votes
3answers
2k views

operator new overloading and alignment

I'm overloading operator new, but I recently hit a problem with alignment. Basically, I have a class IBase which provides operator new and delete in all required variants. All classes derive from ...
17
votes
6answers
993 views

Is it useful to test the return of “new” in C++?

I usually never see test for new in C++ and I was wondering why. Foo *f = new Foo; // f is assumed as allocated, why usually, nobody test the return of new?
16
votes
2answers
7k views

Why use GWT.create() instead of new?

What is the difference between GWT.create(SomeClass.class) and new SomeClass()? Why would you use one over the other?
16
votes
5answers
8k views

What's the differences between VirtualAlloc and HeapAlloc?

There are lots of method to allocate memory in windows enviorment, such as VirtualAlloc/HeapAlloc/malloc/new. Thus , what's the difference among them?
15
votes
2answers
231 views

What is exactly happening when instantiating with 'new'?

Let's consider the following code: class a { public $var1; function disp(){ echo $this->var1; } } $obj1 = new a; echo '<br/>After instantiation into ...
15
votes
4answers
364 views

Is it possible to dynamically create an array of constant size in C++?

First of all, I want to reassure you all that I am asking this question out of curiosity. I mean, don't tell me that if I need this then my design has problems because I don't need this in real code. ...
15
votes
4answers
404 views

Why can't you access the size of a new[]'d array?

When you allocate an array using new [], why can't you find out the size of that array from the pointer? It must be known at run time, otherwise delete [] wouldn't know how much memory to free... ...
14
votes
3answers
5k views

Will new return NULL in any case?

I know that according to C++ standard in case the new fails to allocate memory it is supposed to throw std::bad_alloc exception. But I have heard that some compilers such as VC6 (or CRT ...
13
votes
3answers
267 views

new[] doesn't decrease available memory until populated

This is in C++ on CentOS 64bit using G++ 4.1.2. We're writing a test application to load up the memory usage on a system by n Gigabytes. The idea being that the overall system load gets monitored ...
13
votes
3answers
8k views

iPhone create folder inside documents folder

i just want to create new folders in the documents folder of my iPhone app does anybody know how to do that ? appreciate your help!
13
votes
3answers
12k views

Use new keyword if hiding was intended

I have the following snippet of code that's generating the "Use new keyword if hiding was intended" warning in VS2008: public double Foo(double param) { return base.Foo(param); } The Foo() ...
12
votes
5answers
238 views

Does allocating objects of the same size improve GC or “new” performance?

Suppose we have to create many small objects of byte array type. The size varies but it always below 1024 bytes , say 780,256,953.... Will it improve operator new or GC efficiency over time if we ...
12
votes
8answers
483 views

What do braces after C# new statement do?

Given the code below, what is the difference between the way position0 is initialized and the way position1 is initialized? Are they equivalent? If not, what is the difference. class Program { ...
12
votes
5answers
354 views

What is this second new?

What is the second line? (Seen while answering another question.) int * x = new int [1] ; int * y = new (x) int; After the second line x and y have the same value (point to a same place). What's ...
12
votes
3answers
179 views

Getting Onboard The OpenSource Train

I know how to find open source projects. I know how to find them. What I don't know how to do is ask for a list of things to do. Every dev mailing list I have been on has been full of actual ...
11
votes
8answers
715 views

JavaScript: The Good Parts - How to not use `new` at all

Crockford's book, JavaScript: The Good Parts, says (on page 114) that constructor functions should always be given names with an initial capital letter (ie. Point), and that function names with ...
11
votes
16answers
2k views

Can the C++ `new` operator ever throw an exception in real life?

Can the new operator throw an exception in real life? And if so, do I have any options for handling such an exception apart from killing my application? Update: Do any real-world, new-heavy ...
11
votes
2answers
1k views

C++ Confusion. Reading Integer From Text File. Convert to ASCII

I am learning C++ for the first time. I have no previous programming background. In the book I have I saw this example. #include <iostream> using::cout; using::endl; int main() { int x ...
11
votes
37answers
837 views

How do you start learning a new programming language? [closed]

A few days ago I came over this question: Did you ever switch from one programming language to another? and it seems, that almost everyone had this problem more than just once. What is your ...
10
votes
4answers
932 views

Confused about “override” vs. “new” in C#

I'm having the following classes: class Base { public virtual void Print() { Console.WriteLine("Base"); } } class Der1 : Base { public new virtual void Print() { ...
10
votes
14answers
624 views

latest programming tools under construction?

This site has been great for me to learn what's out there for programming tools and libraries. I'm wondering what are some promising tools/libraries/algorithms -- in any areas of programming or ...
9
votes
2answers
404 views

new operator for memory allocation on heap

I was looking at the signature of new operator. Which is: void* operator new (std::size_t size) throw (std::bad_alloc); But when we use this operator, we never use a cast. i.e int *arr = new int; ...
9
votes
11answers
299 views

Any reason not to use `new object().foo()`?

When using extremely short-lived objects that I only need to call one method on, I'm inclined to chain the method call directly to new. A very common example of this is something like the following: ...
9
votes
8answers
628 views

Why doesn't delete destroy anything?

I'm playing a little with memory dynamic allocation, but I don't get a point. When allocating some memory with the new statement, I'm supposed to be able to destroy the memory the pointer points to ...
9
votes
6answers
4k views

C++: Delete this?

Is it allowed to delete this; if it the delete-statement the last statement that will be executed in that instance of the class? Or is it maybe allowed to delete that instance in a method called at ...
9
votes
3answers
1k views

When is #include <new> library required in C++?

According to this reference entry for operator new ( http://www.cplusplus.com/reference/std/new/operator%20new/ ) : Global dynamic storage operator functions are special in the standard ...
9
votes
4answers
613 views

What values can a constructor return to avoid returning this?

What are the exact circumstances for which a return statement in Javascript can return a value other than this when a constructor is invoked using the new keyword? Example: function Foo () { ...
9
votes
13answers
2k views

What are uses of the C++ construct “placement new”?

I just learned about the C++ construct called "placement new". It allows you to exactly control where a pointer points to in memory. It looks like this: #include <new> // Must ...
8
votes
5answers
184 views

Differences between new Integer(123), Integer.valueOf(123) and just 123

Recenlty I saw code (Java) like this: myMethod(new Integer(123)); I am currently refactoring some code, and there is a tip in Sonar tool, that it's more memory friendly to use sth like this: ...
8
votes
2answers
83 views

Does casting a pointer to “void*” have any effect when placement new is called?

I'm reviewing code of a custom container and some portions of it create elements like this: ::new( (void*)&buffer[index] ) CStoredType( other ); and some do like this: ::new( ...
8
votes
1answer
187 views

How do Object() and new Object() differ in JavaScript?

In JavaScript, what's the difference between var x = Object(); and var x = new Object(); ?
8
votes
9answers
268 views

Can I detect whether I've been given a new object as a parameter?

Short Version For those who don't have the time to read my reasoning for this question below: Is there any way to enforce a policy of "new objects only" or "existing objects only" for a method's ...

1 2 3 4 5 15