摘要: 任务一: 源代码: button.hpp 1 #pragma once 2 3 #include<iostream> 4 #include<string> 5 6 using std::string; 7 using std::cout; 8 9 //按钮类 10 class Button { 11 阅读全文
posted @ 2024-11-10 17:16 F&WJ 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 任务1: 源代码: t.h 1 #pragma once 2 3 #include <string> 4 5 class T{ 6 public: 7 T(int x=0,int y=0); 8 T(const T &t); 9 T(T &&t); 10 ~T(); 11 12 void adjus 阅读全文
posted @ 2024-10-29 16:54 F&WJ 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 任务1: 源代码task1.cpp 1 #include<iostream> 2 #include<string> 3 #include<vector> 4 #include<algorithm> 5 6 using namespace std; 7 8 template<typename T> 9 阅读全文
posted @ 2024-10-14 20:19 F&WJ 阅读(2) 评论(0) 推荐(0) 编辑