摘要:
构造函数和析构函数 #include <iostream> #include <string> using namespace std; //创建一个类,C++编译器会给类添加至少三个函数 //默认构造函数;析构函数;拷贝构造函数,当自己创建这三个函数时就会抵消掉默认创建的函数了。 /* 构造函数: 阅读全文
摘要:
类定义 #include <iostream> #include <string> using namespace std; #define PI 3.141592657 class Circle { //访问权限 //公共权限 public: //属性 int half_r; //行为 doubl 阅读全文