摘要:
实验任务1:代码:publisher.hpp 查看代码 #pragma once #include <iostream> #include <string> using std::cout; using std::endl; using std::string; // 发行/出版物类:Publish 阅读全文
摘要:
实验任务1: 代码: t.h 查看代码 #pragma once #include <string> class T { public: T(int x = 0, int y = 0); T(const T &t); T(T &&t); ~T(); void adjust(int ratio); v 阅读全文