摘要:
task1: button.hpp: 点击查看代码 #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button( 阅读全文
摘要:
task1: 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 radio); void disp 阅读全文
摘要:
task1.cpp 点击查看代码 #include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; template<typename T> void output(co 阅读全文