10 2024 档案

摘要:实验任务1: t.h代码: 1 #pragma once 2 #include <string> 3 // 类T: 声明 4 class T { 5 // 对象属性、方法 6 public: 7 T(int x = 0, int y = 0); // 普通构造函数 8 T(const T &t); 阅读全文
posted @ 2024-10-29 23:36 rrrrrrrr00000 阅读(7) 评论(0) 推荐(0) 编辑
摘要:实验结论 1.实验任务1 代码: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 8 template<typename T 阅读全文
posted @ 2024-10-13 18:08 rrrrrrrr00000 阅读(9) 评论(0) 推荐(0) 编辑