C ++不允许您从构造函数中调用私有函数吗?

时间:2013-11-25 17:18:24

标签: c++

我有以下程序

#include <iostream>

class Blah {
    private:
        void hello();  
    public:
        Blah();  
};

void Blah::hello() {
    std::cout << "Hello, world" << std::endl;
}

Blah::Blah() {
    hello();
}

int main() {
    Blah a();
    return 0;
}

它编译得很好,但是当我运行它时,程序不会像我预期的那样在控制台中打印“Hello,world”。这是为什么?

1 个答案:

答案 0 :(得分:12)

Blah a();

这不会创建一个对象,它会声明一个函数。将其更改为

Blah a;

这有时被称为“烦恼的解析”。