下列程序的输出结果为: 0bject id=0 0biect id=1 请将程序补充完整。 include using na

8 查阅

下列程序的输出结果为:

0bject id=0

0biect id=1

请将程序补充完整。

include<iostream>

using namespace std;

class Point

{

public:

Point(int xx=0,int yy=0){X=xx;Y=yy;countP++;}

~Point(){countP--;}

int GetX(){return X;}

int GetY(){return Y;}

static void GetC(){cout<<"0bject id="<<countP<<end1;}

private:

int X,Y;

static int countP;

};

______//静态数据成员的初始化

int main()

{

Point::GetC();

Point A(4,5);

A.GetC();

return 0;

}

参考答案:

int Point::countP=0;int Point::countP=0;

计算机二级