Today, I found out that you can write such code in C++ and compile it:
int* ptr = new int(5, 6);
What is the purpose of this? I know of course the dynamic new int(5) thing, but here i'm lost. Any clues?
|
Today, I found out that you can write such code in C++ and compile it:
What is the purpose of this? I know of course the dynamic |
||||
|
You are using the comma operator, it evaluates to only one value (the rightmost).
The memory address that the pointer is pointing to is initialized with a value of 6 above. |
|||||||||||||||||||
|
|
My compiler, g++, returns an error when attempting to do this. What compiler or code did you see this in? |
|||
|
I believe it is bug which meant to allocate some sort of 2D array. You can't do that in C++ however. The snippet actually compiles because it's utilizing the comma operator, which returns the last expression and ignores the results of all the others. This means that the statement is equivalent to:
|
|||
|
|
|
The 5 is ignored. this allocates an int on the heap and initializes it to (5,6). the result of a set of statements separated by the comma operator is the value of the last statement, so the int is initialized to 6 |
|||
|
|
|
Simply do this:
As far as comma operator is concerned, use it when you can't do the desired task without it. There is no use of applying tricks such as:
|
|||
|
|
int* ptr = new int((5, 6));.int(5,6)should result in an error, but placing it in parenthesis turns it into a 6, then uses that. That said, it's ugly. :) – GManNickG Feb 26 '10 at 23:45