热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

关于privatestatic数据成员

#include<iostream>usingnamespacestd;classA{public:staticintx;voidsetx(

#include
using namespace std;

class A
{
public:
      static int x;
      void setx(int z)
      {
          x=z;
      }
     void sety(int z)
     {
          y=z;
     }
    void p()
    {
        cout<<"y="<     }
private:
     static int y;
};

int A::x=0;
int A::y=0;

void main()
{
 A A1;

 A1.setx(4); //通过类的成员函数
 cout<<"x="<

 A1.x=9; //还可以这样
 cout<<"x="<

 A1.sety(3); //只能通过类的成员函数
 //A1.y=4; 是错误的
 A1.p();
}

存取私有静态数据成员的方法只能是:
   1. 通过类的成员函数。
   2. 通过类的友元。


推荐阅读
author-avatar
战冰_斗雪
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有