摘要: 实验任务1 task1_1.cpp #include <iostream> using std::cout; using std::endl; // 类A的定义 class A { public: A(int x0, int y0); void display() const; private: i 阅读全文
posted @ 2024-11-21 11:22 徐睿泽 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 bottom.hpp #pragma once #include <iostream> #include <string> using std::string; using std::cout; // 按钮类 class Button { public: Button(const str 阅读全文
posted @ 2024-11-05 19:06 徐睿泽 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 实验任务1 t.h源代码 // 类T: 声明 class T { // 对象属性、方法 public: T(int x = 0, int y = 0); // 普通构造函数 T(const T &t); // 复制构造函数 T(T &&t); // 移动构造函数 ~T(); // 析构函数 void 阅读全文
posted @ 2024-10-28 15:52 徐睿泽 阅读(7) 评论(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 阅读全文
posted @ 2024-10-10 20:49 徐睿泽 阅读(12) 评论(0) 推荐(0) 编辑