guguabiu

导航

2024年10月29日 #

实验2

摘要: 任务1: t.h: 1 #pragma once 2 #include <string> 3 class T { 4 public: 5 T(int x = 0, int y = 0); 6 T(const T &t); 7 T(T &&t); 8 ~T(); 9 10 void adjust(in 阅读全文

posted @ 2024-10-29 17:36 衾初 阅读(3) 评论(0) 推荐(0) 编辑

2024年10月13日 #

实验1现代c++初体验

摘要: 实验1: 1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 8 template<typename T> 9 void out 阅读全文

posted @ 2024-10-13 18:10 衾初 阅读(7) 评论(0) 推荐(0) 编辑