构造函数中可以使用默认参数
摘要:
#include <iostream>using namespace std;class Box{public: Box(int x = 0, int y = 0, int z = 0); //声明构造函数时指定默认参数 void area(); void volume(); private: in 阅读全文
posted @ 2023-03-22 20:40 悟空+ 阅读(88) 评论(0) 推荐(0) 编辑