c++: what's the difference between new Object() and Object()

元气小坏坏 提交于 2019-11-30 20:10:01

问题


so 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 b/w the two and why would I use one over the other?


回答1:


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.




回答2:


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



回答3:


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();


来源:https://stackoverflow.com/questions/5775281/c-whats-the-difference-between-new-object-and-object

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!