首页 > 代码库 > 静态数据成员与静态成员函数
静态数据成员与静态成员函数
3-6 静态数据成员与静态成员函数
Time Limit: 1000MS Memory limit: 65536K
题目描述
通过本题目的练习可以掌握静态数据成员和静态成员函数的用法
要求设计一个点类Point,它具有两个double型的数据成员x,y。和一个静态数据成员count ,用以记录系统中创建点对象的数目。为该类设计构造函数和析构函数,在其中对count的值做修改,体现点的数目的动态变化。并为其添加一个静态成员函数用以输出count的值;成员函数showPoint()用于输出点的信息。
并编写主函数,输出以下的内容。
输入
无
输出
示例输入
示例输出
x=0,Y=0the number of points is 3Deconstructor point x=5Deconstructor point x=3Deconstructor point x=0
#include <iostream>#include <string>using namespace std;class Point{ private: double x; double y; public: static int count; Point(double x=0, double y=0 ); ~Point() { cout<<"Deconstructor point "<<"x="<<x<<endl; } void cnt() { count++; } static void outt() { cout<<"the number of points is "<<count<<endl; } void disp();};int Point::count=0;Point::Point(double xx, double yy){ x = xx; y = yy;}void Point::disp(){ cout<<"x="<<x<<‘,‘<<"Y="<<y<<endl;}int main(){ Point d; d.disp(); d.cnt(); Point g(3); g.cnt(); Point h(5); h.cnt(); Point::outt(); return 0;}
静态数据成员与静态成员函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。