In a function, how to you assign this a new value?
|
You can't. 9.3.2 The this pointer [class.this]
You can modify the object
The method modifies the object itself, but something like |
|||||||
|
|
Long ago, before the first C++ standard has been published, some compiler implementations allowed you to write the following code inside a constructor:
The technique served as the only way to control allocation of class of objects. This practice has been prohibited by the standard, because overloading of the |
|||||||
|
|
You can't. If you feel the need to do this perhaps you should be writing a static method taking a class pointer as it's first parameter. |
|||||
|
|
You can assign the object
But you can't assign the direct value of
|
|||
|
|
|
You cannot assign value to |
|||||||||||||||||
|

const, then you could simplyconst_castit back to something modifiable. The result would be undefined behavior, but it wouldn't be a syntax error. Applyingconst_casttothisOTOH will not compile in a well-behaved compiler. – Potatoswatter Nov 20 '12 at 15:54