摘要: #pragma once #include <iostream> #include <string> using std::cout; using std::endl; using std::string; // 发行/出版物类:Publisher (抽象类) class Publisher { p 阅读全文
posted @ 2024-12-08 15:56 徐峰6420 阅读(6) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using std::cout; using std::endl; // 类A的定义 class A { public: A(int x0, int y0); void display() const; private: int x, y; }; A::A(i 阅读全文
posted @ 2024-11-25 09:18 徐峰6420 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 任务一 #pragma once #include <iostream> #include <string> using std::string; using std::cout; // °´Å¥Àà class Button { public: Button(const string &text) 阅读全文
posted @ 2024-11-10 14:04 徐峰6420 阅读(5) 评论(0) 推荐(0) 编辑