SDUT-2675 3-6 静态数据成员与静态成员函数

3-6 静态数据成员与静态成员函数

Time Limit: 1000MS  Memory Limit: 65536KB
Problem Description

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

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

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

Input
 

Output
  0
0
且静态成员函数只可以引用属于该类的静态数据成员和静态成员函数
0
0
0
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
#include <iostream>

 using namespace std;

 class Point
 {
 private:
    int x;int y;static int c;
 public:
     Point(int xx=0,int yy=0);
     ~Point();
     static void put();
     void showPoint();

 };

 Point::Point(int xx,int yy)
 {
     c++;
     x=xx;y=yy;
 }

 void Point::put()
 {
      cout<<"the number of points is "<<c<<endl;
 }

 void Point::showPoint()
 {
     cout<<'x'<<'='<<x<<','<<'Y'<<'='<<y<<endl;
 }

  Point::~Point()
 {
     cout<<"Deconstructor point x="<<x<<endl;
 }
 int Point::c=0;

 int main()
 {
     Point a;
     a.showPoint();
     Point b(3);
     Point c(5);
     c.put();
     return 0;
 }


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值