sdut oj3-6 静态数据成员与静态成员函数

来源:互联网 发布:linux快捷键退出终端 编辑:程序博客网 时间:2024/06/05 03:58

题目链接:点击打开链接   

 3-6 静态数据成员与静态成员函数
Time Limit: 1000MS Memory Limit: 65536KB
Problem Description

通过本题目的练习可以掌握静态数据成员和静态成员函数的用法

要求设计一个点类Point,它具有两个double型的数据成员x,y。和一个静态数据成员count ,用以记录系统中创建点对象的数目。为该类设计构造函数和析构函数,在其中对count的值做修改,体现点的数目的动态变化。并为其添加一个静态成员函数用以输出count的值;成员函数showPoint()用于输出点的信息。

并编写主函数,输出以下的内容。
Input
 


Output
 
Example Input

Example Output

x=0,Y=0
the number of points is 3
Deconstructor point x=5
Deconstructor point x=3
Deconstructor point x=0

Hint
 
Author
 黄晶晶


代码实现:

#include <iostream>#include <string.h>#include <iomanip>using namespace std;class Point{private:    double x,y;    static int Count;public:    Point(int a = 0,int b = 0);    ~Point()    {        cout<<"Deconstructor point x="<<x<<endl;    }    static void showPoint();    void display()    {        cout<<"x="<<x<<","<<"Y="<<y<<endl;//此处有坑    }};Point::Point(int a,int b){    x = a;y = b;    Count++;}int Point::Count = 0;void Point::showPoint(){    cout << "the number of points is " << Count << endl;}int main(){    Point a(0);    a.display();    Point b(3), c(5);    Point::showPoint();    return 0;}


0 0
原创粉丝点击