Consider the following line of code:
new (p++) T();
If the constructor T() throws an exception, is p guaranteed to have already been incremented?
|
Consider the following line of code:
If the constructor
| |||
|
feedback
|
|
From 5.3.4 [expr.new] (quoting from n3242):
So in a new expression the allocation function is used from a function call (which makes sense). All allocation functions are functions, including the ones provided by the implementation, from 3.7.4.1 [basic.stc.dynamic.allocation]:
So by the time an exception is thrown from the constructor, the allocation has taken place and the associated function call expression has been fully evaluated. | ||||
|
feedback
|
|
Yes it is guaranteed to be incremented. The operators are just syntactic sugar for function/method calls. Thus all parameter are fully evaluated (with sequence point) before the function | |||
|
feedback
|
|
I don't think the standard answers this question directly/explicitly. Implicitly, however, the answer is yes. In particular, the placement syntax for new is simply a way of specifying extra parameters that will be passed to a function. Like any other function call, there is a sequence point between evaluating all the parameters to the function (in unspecified order), and executing any code in the function. I believe that should mean your | |||
|
feedback
|
|
Placement new is just a regular function, named | |||||||
feedback
|
|
The increment operator does the following:
So, | |||||||||
feedback
|
new (p) T(); ++p;because it is easier to understand and the differing semantics (no increment when exception is thrown) fit my program logic better. – FredOverflow Jun 27 '11 at 19:50