摘要: #include <iostream> using namespace std; class Object { private: int weight; public: Object() { cout << "构造Object对象" << endl; weight = 0; } int getWei 阅读全文
posted @ 2023-05-15 20:27 张佳木 阅读(31) 评论(0) 推荐(0) 编辑