What's the difference between new Object() and Object() [duplicate]
In C++ you can instantiate objects using the new keyword or otherwise...
Object o = new Object();
but you can also just do
Object o = Object();
what exactly is the difference between the two, and why would I use one over the other?
You can't do Object o = new Object();
The new
operator returns a pointer to the type. It would have to be Object* o = new Object();
The Object
instance will be on the heap.
Object o = Object()
will create an Object
instance on the stack. My C++ is rusty, but I believe even though this naively looks like an creation followed by an assignment, it will actually be done as just a constructor call.
The first type:
Object* o = new Object();
Will create a new object on the heap and assign the address to o. This only invokes the default constructor. You will have to manually release the memory associated with the object when done.
The second type:
Object o = Object();
Will create an object on the stack using the default constructor, then invoke the assignment constructor on o. Most compilers will eliminate the assignment call, but if you have (intended or otherwise) side-effects in the assignment operation, you should take that into account. The regular way to achieve creating a new object without invoking the assignment operation is:
Object o; // Calls default constructor
I was Searching for a question like above but with variation, so I'll add my question here
I noticed difference in visual studio 2015 compiler and gcc v4.8.5.
class Object
{
public:
x=0;
void display(){ std::cout<<" value of x: "<<x<<"\n";}
};
Object *o = new Object;
o->display(); // this gives garbage to this->x , uninit value in visualstudio compiler and //in linux gcc it inits this->x to 0
Object *o = new Object(); // works well
o->display();
精彩评论