收藏 分享(赏)

C++多文件结构简单示例.doc

上传人:HR专家 文档编号:11559962 上传时间:2020-06-24 格式:DOC 页数:2 大小:48.50KB
下载 相关 举报
C++多文件结构简单示例.doc_第1页
第1页 / 共2页
C++多文件结构简单示例.doc_第2页
第2页 / 共2页
亲,该文档总共2页,全部预览完了,如果喜欢就下载吧!
资源描述

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;

展开阅读全文
相关资源
猜你喜欢
相关搜索
资源标签

当前位置:首页 > 网络科技 > 计算机原理

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报