1、先新建工程,然后点插入,选择插入类,直接生成 类.h和类.cpp,进行编辑即可同一个窗口下同时打开,运行-/文件1,类的定义,Point.hclass Point /类的定义public:/外部接口Point(int x = 0, int y = 0) : x(x), y(y) Point(const Point &p);Point() count-; int getX() const return x; int getY() const return y; static void showCount();/静态函数成员private:/私有数据成员int x, y;static int co
2、unt;/静态数据成员;/文件2,类的实现,Point.cpp#include Point.h#include using namespace std;int Point:count = 0;/使用类名初始化静态数据成员Point:Point(const Point &p) : x(p.x), y(p.y) /拷贝构造函数体count+;void Point:showCount() cout Object count = count endl;/文件3,主函数,5_10.cpp#include Point.h#include using namespace std;int main() Point a(4, 5);/定义对象a,其构造函数回使count增1cout Point A: a.getX() , a.getY();Point:showCount();/输出对象个数Point b(a);/定义对象b,其构造函数回使count增1cout Point B: b.getX() , b.getY();Point:showCount();/输出对象个数return 0;