静态成员
摘要:
静态成员(来自百度百科) 在c++类中声明成员时可以加上static关键字,这样声明的成员就叫做静态成员(包括数据成员和成员函数)。例如: class test{ public: test(){} ~test(){} public: //静态成员函数 static int getCount(){ return m_nCount; } private: //静态数据成员 static int m_nCount; }; int test::m_nCount=0; 静态数据成员和普通数据成员区别较大,体现在下面几点: (1)普通数据成员属于类的一个具体的对象,只有对... 阅读全文
posted @ 2012-10-18 20:42 more think, more gains 阅读(165) 评论(0) 推荐(0) 编辑