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

后端 未结 3 1481
孤城傲影
孤城傲影 2021-01-07 08:17

so in C++ you can instantiate objects using the new keyword or otherwise...

Object o = new Object();

but you can also just do



        
相关标签:
3条回答
  • 2021-01-07 08:39

    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();
    
    0 讨论(0)
  • 2021-01-07 08:41

    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.

    0 讨论(0)
  • 2021-01-07 08:59

    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
    
    0 讨论(0)
提交回复
热议问题