Difference between 'new operator' and 'operator new'?
Asked Answered
S

8

151

What is difference between "new operator" and "operator new"?

Sweptwing answered 11/12, 2009 at 4:51 Comment(3)
Hi, can you please clarify the question? Looks like there is typo somewhere.Monsoon
The question is worded correctly, see answers below. The method for dynamically allocating memory is to use the new operator. This operator can be overloaded. To distinguish between the default operator and an overloaded version, the default is called "new operator" and the overloaded version is called "operator new".Orton
How to do that. I am new and unaware.Sweptwing
P
152

I usually try to phrase things differently to differentiate between the two a bit better, but it's a good question in any case.

Operator new is a function that allocates raw memory -- at least conceptually, it's not much different from malloc(). Though it's fairly unusual unless you're writing something like your own container, you can call operator new directly, like:

char *x = static_cast<char *>(operator new(100));

It's also possible to overload operator new either globally, or for a specific class. IIRC, the signature is:

void *operator new(size_t);

Of course, if you overload an operator new (either global or for a class), you'll also want/need to overload the matching operator delete as well. For what it's worth, there's also a separate operator new[] that's used to allocate memory for arrays -- but you're almost certainly better off ignoring that whole mess completely.

The new operator is what you normally use to create an object from the free store:

my_class *x = new my_class(0);

The difference between the two is that operator new just allocates raw memory, nothing else. The new operator starts by using operator new to allocate memory, but then it invokes the constructor for the right type of object, so the result is a real live object created in that memory. If that object contains any other objects (either embedded or as base classes) those constructors as invoked as well.

Psychosexual answered 11/12, 2009 at 5:8 Comment(9)
+1, as to a different phrasing, the standard uses new expression all around, and only once it uses new operator to refer to the place of call. I tend to do the same: operator new for the allocator and new expression for the use.Initial
A new expression is the whole phrase that begins with new. So what do you call just the "new" part of it? If it's wrong to call that the new operator, then we should not call "sizeof" the sizeof operator, or & the address-of operator (when it behaves like one).Cryology
Following up on Kaz's remark, perhaps the question should be rephrased as, What's the difference between the new operator and the operator new operator? :)Urochrome
This probably sounds silly, but is there any way to overload the new operator?Orthotropous
@Mehrdad: You can overload operator new and operator new[], (the allocators) but not the new operator itself.Psychosexual
"operator new" vs "new keyword"Crandale
If one allocates a chunk of memory as you did in your first line of code, what would be the correct way to release that memory?Rathbone
@antred: You'd release that with something like operator delete(x);.Psychosexual
placement new new expression and new operator are same thing, while operator new is distinct.Livre
E
42

"operator new"

class Foo
{
public:
        void* operator new( size_t );
}

"new operator":

Foo* foo = new Foo();

In this example, new Foo() calls Foo::operator new()

In other words, "new operator" calls "operator new()" just like the + operator calls operator +()

Entrenchment answered 11/12, 2009 at 5:3 Comment(11)
new is not an operator in C++. sizeof, for example, is an operator, but new and delete are not. new and delete are keywords and the syntactical constructs that these keywords form are called new-expression and delete-expression.Hostess
Uh, if anything, sizeof is the syntactic construct, and new and delete are both valid, legal, overload-able operators. From everything I've ever seen, new and delete are both operators. See [cplusplus.com][cplusplus.com/doc/tutorial/classes2/]Entrenchment
Incorrect. The official C++ terminology is the terminology defined by the language specification, not by some web site. In the language specification there's no such therm as "new operator", but there's such term as "operator new function". Again, sizeof is explicilty referred to as an "operator", while new and delete are never referred to as operators.Hostess
AndreyT: Incorrect. The C++ standard does call 'new' an operator, see 13.5/1.Counterstamp
In the context of operator-overloading, it's an operator. But 5.3.3 starts "The sizeof operator...", and 5.3.4 starts "The new-expression...". Go figure. Neither one of them is a unary-operator in 5.3.Conrado
As Roger Pate correctly points out, new and delete are operators along with: new delete new[] delete[] + - * / % ^ & | ~ ! = < > += -= = /= %= ^= &= |= << >> >>= <<= == != <= >= && || ++ -- , -> -> () [] Notice that sizeof is not between. see: kuzbass.ru:8086/docs/isocpp/over.html#over.operTowboat
@Roger: Incorrect. Whay you quoted is a piece of C++ language grammar. The word operator in this case is just a non-terminal symbol of the grammar, not a term. They could have called it grandmas-cookie with the same degree of success. All this means is that function-id operator new is handled by the same branch of grammar that is used for real operators, but in no way it means that new is also an operator. The Note: bit that follows the grammar is non-normative, so they took certain liberties there.Hostess
So, can we agree that for this specific question that new is an operator? In day-to-day use, does it really matter that new is actually an expression defined like an operator? I understand AndreyT's point, and see how the definition is important, but only in the context of, say, how the compiler interprets it, NOT in this case.Entrenchment
Well, I agree. But when I look at the original question, that is what I see: a purely terminological question. Terminological questions are supposed to be pedantic, in my opinion.Hostess
AndreyT: I was pointing out how your statement that "new and delete are never referred to as operators" is incorrect. The standard is great for many things, but not everything.Counterstamp
@AndreyT: I thought as you do, that operator new was the allocator and new-expression the uses. I reviewed and checked that in §5.3.4/3 the current standard uses the term new operator. Later in §5.3.4/8 it names the allocator functions as operator new and operator new[]Initial
H
25

Following is the quote from More Effective C++ book from Scott Meyers:

The new operator calls a function to perform the requisite memory allocation, and you can rewrite or overload that function to change its behavior. The name of the function the new operator calls to allocate memory is operator new.

Hame answered 11/12, 2009 at 4:59 Comment(2)
The term is obviously invented by the author of the book (or,maybe, borrowed from some obsolete source). In formal C++ nomenclature there's no such term as "new operator".Hostess
@AndreyT: I did a search of the C++11 for "new operator" and found it referenced in four places. Specifically, two references to the "placement new operator"Swordcraft
T
11

The OP's question is not phrased properly. It's better to phase as 'Difference between 'operator new' and 'new expression'?' Note 'operator new' often refers to 'operator new function' as well.

And there are plenty correct answer around, below is mine:

1> 'new expression' call 'operator new' to allocate raw memory,then call constructor

apple * p = new apple(); //new expression

2> 'operator new' only allocate raw memory, not much difference than malloc

void* mem = operator new(sizeof(apple)); //just like calling malloc()
apple* p2 = new(mem) apple(1); //call construct here using placement new.
Thrum answered 16/10, 2012 at 15:44 Comment(0)
H
9

When you create a new object the memory is allocated using operator new then the constructor is invoked to initialise the memory. The new operator does both the allocation and the initialisation, where as the operator new only does the allocation.

Hedgerow answered 11/12, 2009 at 4:56 Comment(0)
H
7

There's no difference between "new operator" and "operator new". Both refer to the same thing: the overloadable/replaceable operator new function that typically performs raw memory allocation for objects created by new-expressions.

Note also that neither term is present in the language specification (which is the defining source of the official terminology).

When you use new in your program to create an object, it is called new-expression. New-expression consists of keyword new and additional syntactic parts defined by the grammar. No part of this expression's syntax is ever referred to as an "operator".

The raw memory allocation function operator new is officially referred to as just "operator new function". Note that the words operator and new in this sequence are just two separate C++ language keywords. They don't form an English term "operator new". Nowhere in the language specification you'll find any references to "operator new" as an English term. Every time this is just a combination of two independent keywords that produce declaration syntax for a memory allocation function.

Again, in resume: formally in C++ there's no such English language terms as "operator new" or "new operator". The former sequence is present in the language specification as a mere combination of keywords, not as an English term. The latter is not present at all.

Hostess answered 11/12, 2009 at 5:8 Comment(1)
You seem lost in some pedantic mental-masturbation. The standard is vague in spots, and this is one of them. It makes just as much sense to "discuss the new operator" as it does to "discuss the plus operator" or "discuss the + operator".Counterstamp
R
3
  1. new is an operator as well as a keyword.

    see [1] In 2.13 && In 2.12.

  2. new does two things: T* t = new T(arg);

    1)allocate memory for the object: void* ptr = operator new(sizeof(T));

    //operator new is a function(just like malloc in c), not an operator.(see [1] In 3.7.4 ). But Item 7 [2] said it is an operator too. In my opinion, the difference between operator and function is small, and you can see it when you recall that overloading operator is implemented by functions.

    //we can overload this operator/function(operator new) doing what we want just here.

    2)initialize the object in the allocated memory: call T::T(arg) on ptr

    //only compiler can do this. Neither me nor you can.

    //also compiler will invoke member objects' constructors and base class's constructor if T has them. And this invocation is recursive. Only compiler can do that.

  3. So, operator new does part of the missions of new, and only in this part we can do something.

    [1]: ISO/IEC, N3690. http://ww.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3690.pdf

    [2]: Meyers, Scott. Effective C++, 3rd.

Readymade answered 15/1, 2014 at 6:16 Comment(0)
S
2

The new operator: C++ supports dynamic allocation of objects using the new operator. The new operator allocate memory for objects from a pool called the free store. The new operator calls the special function operator new.

operator new: If the request is for zero bytes of storage, operator new returns a pointer to a distinct object (that is, repeated calls to operator new return different pointers). If there is insufficient memory for the allocation request, operator new returns NULL or throws an exception. The first argument to operator new must be of type size_t (a type defined in STDDEF.H), and the return type is always void *.

Here is a MSDN links for more details:

The operator new Function

The new Operator

Sandbox answered 11/12, 2009 at 5:10 Comment(1)
Slight clarification: the non-placement operator new must always throw on allocation failure (according to the standard); and placement forms, such as ::new(std::nothrow), can do either (that specific example returns a null pointer).Counterstamp

© 2022 - 2024 — McMap. All rights reserved.