摘要: 题目: 为下面的Rectangle类实现构造函数,拷贝构造函数,赋值操作符,析构函数。 class Shape { int no; }; class Point { int x; int y; }; class Rectangle: public Shape { int width; int hei 阅读全文
posted @ 2015-08-21 17:05 wangxiaobao1114 阅读(667) 评论(0) 推荐(1) 编辑