c – 为什么可以从全局范围调用私有构造函数?
发布时间:2020-12-16 05:47:47 所属栏目:百科 来源:网络整理
导读:此代码编译并运行没有错误: class foo{ static foo *ref; foo(){} public: static foo *getRef(){ return ref; } void bar(){}};foo* foo::ref = new foo; // the construcrtor is private!int main(int argc,const char *argv[]){ foo* f = foo::getRef();
此代码编译并运行没有错误:
class foo{ static foo *ref; foo(){} public: static foo *getRef(){ return ref; } void bar(){} }; foo* foo::ref = new foo; // the construcrtor is private! int main(int argc,const char *argv[]) { foo* f = foo::getRef(); f->bar(); return 0; } 有人可以解释为什么可以调用构造函数? 解决方法
该范围不是全局 – 静态成员在类范围内,因此它们的初始化表达式也在类的范围内.
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |