Possible Duplicate:
Do the parentheses after the type name make a difference with new?

I saw someone uses the constructor like this:

class Foo
{
  public: Foo();
};

int main(){
  Foo *f= new Foo;
}

what is the difference between Foo *f= new Foo; and Foo *f= new Foo(); ?

link|improve this question

67% accept rate
1  
Is this really C++? Both won't compile (both returns Foo*). – KennyTM Dec 20 '11 at 8:36
@KennyTM, edited the post with removing compilation errors. – iammilind Dec 20 '11 at 8:37
feedback

closed as exact duplicate by R. Martinho Fernandes, cpx, sbi, Cody Gray, DeadMG Dec 20 '11 at 8:53

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 1 down vote accepted

First of all the code you give will not compile. You need to have

Foo* f = new Foo()

Notice the asterisk.

Otherwise the two calls have the same result for non-primitive types. I have worked in companies where the () syntax is enforced by the styleguide and for a good reason: for primitive types there can be a difference:

int* p = new p;
cout << *p << endl; // the value is arbitrary i.e. behavior is undefined.
int* q = new int();
cout << *q << endl; // outputs 0.

It may be obvious here but imagine that Foo is a typedef for instance. So my advice is: always use the Foo() syntax.

link|improve this answer
feedback

There is no difference between those two forms of initializations. Both will call the default constructor, given that the constructor is public.

link|improve this answer
There is a difference for built-ins. – sbi Dec 20 '11 at 8:52
@sbi: i wasn't talking about built ins. may be i should be more elaborate. – Donotalo Dec 20 '11 at 9:00
1  
@iammilind: how is having bold text significantly better? – sehe Dec 20 '11 at 9:09
@sehe, bold text will give the heart of the answer in brief. Those who are further interested can read it in detail. Nothing much :) – iammilind Dec 20 '11 at 9:15
@Donotalo: Yes, I think this would help. – sbi Dec 20 '11 at 10:43
feedback

Ỳour example probably even won't compile, you need to declare a pointer

 Foo *f = new Foo;

and there is no difference in typing new Foo or new Foo() since both run the constructor with no arguments.

link|improve this answer
feedback

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