摘要: 任务一 实验代码 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 { 阅读全文
posted @ 2024-11-09 19:50 张欣颜 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 任务一: 1 t.h 2 #pragma once 3 4 #include <string> 5 6 // 类T: 声明 7 class T { 8 // 对象属性、方法 9 public: 10 T(int x = 0, int y = 0); // 普通构造函数 11 T(const T &t 阅读全文
posted @ 2024-10-24 22:54 张欣颜 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 实验1 代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 8 // 声明 9 // 模板函数声明 10 templat 阅读全文
posted @ 2024-10-15 21:01 张欣颜 阅读(5) 评论(0) 推荐(0) 编辑