If 'Test' is an ordinary class, is there any difference between:
Test* test = new Test;
//and
Test* test = new Test();
|
If 'Test' is an ordinary class, is there any difference between:
| |||||||||||
feedback
|
|
Let's get pedantic, because there are differences that can actually affect your code's behavior. Much of the following is taken from comments made to an "Old New Thing" article. Sometimes the memory returned by the new operator will be initialized, and sometimes it won't depending on whether the type you're newing up is a POD (plain old data), or if it's a class that contains POD members and is using a compiler-generated default constructor.
Assume:
In a C++98 compiler, the following should occur:
In a C++03 conformant compiler, things should work like so:
So in all versions of C++ there's a difference between " And there's a difference in behavior between C++98 and C++03 for the case " This is one of the dusty corners of C++ that can drive you crazy. When constructing an object, sometimes you want/need the parens, sometimes you absolutely cannot have them, and sometimes it doesn't matter. | |||||||||||||||||||
feedback
|
|
No, they are the same. But there is a difference between:
and
This is because of the basic C++ (and C) rule: If something can possibly be a declaration, then it is a declaration. Edit: Re the initialisation issues regarding POD and non-POD data, while I agree with everything that has been said, I would just like to point out that these issues only apply if the thing being new'd or otherwise constructed does not have a user-defined constructor. If there is such a constructor it will be used. For 99.99% of sensibly designed classes there will be such a constructor, and so the issues can be ignored. | |||||||||||||||||||
feedback
|
|
Assuming that Test is a class with a defined constructor, there's no difference. The latter form makes it a little clearer that Test's constructor is running, but that's about it. | ||||
|
feedback
|
|
In general we have default-initialization in first case and value-initialization in second case. For example: in case with int (POD type):
next behaviour depended from your type Test. We have defferent cases: Test have defult constructor, Test have generated default constructor, Test contain POD member, non POD member... | ||||
|
feedback
|
|
They are no different, but you should use the parentheses in practice. Otherwise it can be confusing. | |||||
feedback
|