c++6数据共享与保护静态成员与友元解读.ppt

c++6数据共享与保护静态成员与友元解读.ppt

  1. 1、本文档共42页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
c6数据共享与保护静态成员与友元解读

例6:静态数据成员举例 #include iostream using namespace std; class Point { public: Point(int x=0, int y=0) : x(x), y(y) { count++; } Point(Point p); int getX() { return x; } int getY() { return y; } void showCount() { cout “ Object count=“ count endl; } private: int x,y; static int count; }; 等价于: { x=x; y=y; count++; } Point::Point(Point p) { x = p.x; y = p.y; count++; } int Point::count=0; int main() { Point a(4,5); coutPoint A:a.getX(),a.getY(); a.showCount(); Point b(a); coutPoint B:b.getX(),b.getY(); b.showCount(); return 0; } 二、静态成员函数 用static定义; 与静态数据成员一样,静态成员函数只与类联系,不与对象联系。即应使用类名::函数来调用静态成员函数; 静态成员函数只能引用属于该类的静态数据成员或静态成员函数; 不提倡使用对象.函数的方式来调用静态成员函数。 例7:静态成员函数举例 #include iostream using namespace std; class Application { public: static void f(); static void g(); private: static int global; }; int Application::global=0; void Application::f() { global=5; } void Application::g() { cout global endl; } int main() { Application::f(); Application a; a.g(); return 0; } class A { public: static void f(A a); private: int x; }; void A::f(A a) { cout x; //对x的引用是错误的 cout a.x; //正确 } 例8:具有静态数据、函数成员实例 #include iostream using namespace std; class Point { //Point类定义 public: //外部接口 Point(int x = 0, int y = 0) : x(x), y(y) { count++; } Point(Point p); ~Point() { count--; } int getX() { return x; } int getY() { return y; } static void showCount() { //静态函数成员 cout Object count = count endl; } private: //私有数据成员 int x, y; static int count; //静态数据成员声明 }; Point::Point(Point p) { x = p.x; y = p.y; count++; } int Point::count=0; int main() { //主函数实现 Point a(4,5); //声明对象a coutPoint A,a.getX(),a.getY(); Point::showCount(); //输出对象个数 Point b(a); //声明对象b coutPoint B,b.getX(),b.getY(); Point:: showCount(); //输出对象个数 return 0; } 数据成员x 静态数据成员x 函数成员f 静态函数成员f a.x √ √ a.f() √ √ A::x X √ A::f() X √ 数据成员x 静态数据成员x 函数成员f 静态函数成员f a.x a.f() A::x A::f() 第五节 友元函数 友元是C++提供的一种破坏数据封装和数据隐藏的机制。 为了确保数据的完整性,及数据封装与隐藏的原则,建议尽

您可能关注的文档

文档评论(0)

shuwkb + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档