开发者

c++ allocation on the stack acting curiously

开发者 https://www.devze.com 2022-12-20 11:24 出处:网络
Curious things with g++ (maybe also with other compilers?): struct Object { Object() { std::cout << \"hey \"; }

Curious things with g++ (maybe also with other compilers?):

struct Object {
        Object() { std::cout << "hey "; }
        ~Object() { std::cout << "hoy!" << std::endl; }
};

int main(int argc, char* argv[])
{
        {
                Object myObjectOnTheStack();
        }
        std::cout << "===========" << std::endl;
        {
                Object();
        }
        std::cout << "===========" << std::endl;
        {
        开发者_JAVA百科        Object* object = new Object();
                delete object;
        }
}

Compied with g++:

===========
hey hoy!
===========
hey hoy!

The first type of allocation does not construct the object. What am I missing?


The first type of construction is not actually constructing the object. In order to create an object on the stack using the default constructor, you must omit the ()'s

Object myObjectOnTheStack;

Your current style of definition instead declares a function named myObjectOnTheStack which returns an Object.


Yet another example of the "most vexing parse". Instead of defining an object, you've declared a function named myObjectOnTheStack that takes no arguments and returns an Object.


Object myObjectOnTheStack();

is a forward declaration of a function myObjectOnTheStack taking no parameters and returning an Object.

What you want is

Object myObjectOnTheStack;
0

精彩评论

暂无评论...
验证码 换一张
取 消