摘要:
实验一 botton.hpp #pragma once #include<iostream> #include<string> using std::string; using std::cout; class Button{ public: Button(const string &text); 阅读全文
摘要:
实验任务一: 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); void displ 阅读全文