加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

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;
}

有人可以解释为什么可以调用构造函数?

解决方法

该范围不是全局 – 静态成员在类范围内,因此它们的初始化表达式也在类的范围内.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读