重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章给大家分享的是有关C++中静态成员函数访问非静态成员的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
成都地区优秀IDC服务器托管提供商(成都创新互联公司).为客户提供专业的服务器托管,四川各地服务器托管,服务器托管、多线服务器托管.托管咨询专线:028-86922220
C++中静态成员函数访问非静态成员的实例
实现代码:
#include/* 静态成员函数只能访问静态数据成员、静态成员函数和类以外的函数和数据,不能访问非静态数据成员,但静态成员函数或静态数据成员可由任意访问许可的函数访问。原因是:当前对象的地址(this)是被隐含地传递到被调用的函数的。但一个静态成员函数没有this指针,所以它无法访问非静态的成员函数。 */ class a { public: static void FunctionA()//静态成员函数没有隐含的this自变量 { //menber = 1;//error C2597:对非静态成员"a::member"的非法引用 //printValue();//error C2352:“a::printValue”:非静态成员函数的非法调用 } void printValue() { printf("menber=%d\n",menber); } private: int menber; }; /*如何访问非静态成员呢? 1.把非静态成员修改成静态成员。如:static int member;//这就不会出错了,但有些不妥 2.将对象作为参数,通过对象名来访问该对象的非静态成员 */ class A { public: A():menber(10){} static void FunA(A& _A) { _A.menber = 123; _A.printValue(); } static void FunB(A* _A) { _A->menber = 888; _A->printValue(); } void printValue() { printf("menber=%d\n",menber); } private: int menber; }; int _tmain(int argc, _TCHAR* argv[]) { A* m=new A(); m->FunB(m); A::FunB(m); A::FunA(*m); A b; b.FunA(b); A::FunB(&b); b.FunB(&b); m->FunB(&b); return 0; }
感谢各位的阅读!关于“C++中静态成员函数访问非静态成员的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!