vote up 0 vote down star

Recently, after being very tired, I wrote the following code:

GLfloat* array = new GLfloat(x * y * z);

Which, of course should have been:

GLfloat* array = new GLfloat[x * y * z];

(Note the square brackets as opposed to the parenthesis.)

As far as I know, the first form is not valid, but g++ compiled it. Sure, it spat out a completely incomprehensible segfault, but it compiled.

Why?

flag

71% accept rate

4 Answers

vote up 15 vote down check
GLfloat* array = new GLfloat(x * y * z);

Creates a pointer called array to an object of type GLfloat with a value of x * y * z.

link|flag
vote up 9 vote down

Well, the result of new T() is a T*, so new GLFloat would return a GLFloat*. As long as x*y*z is valid to pass to the GLFloat constructor, it's valid code.

link|flag
vote up 7 vote down

It's the same sort of thing as:

int * p = new int(42);
link|flag
vote up 2 vote down

Well, the first expression is a pointer to a GLfloat with value (x*y*z), which is perfectly legal.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.