摘要: 实验任务一: 源代码: T.h 1 #pragma once 2 #include<string> 3 class T 4 { 5 public: 6 T(int x = 0, int y = 0); // 普通构造函数 7 T(const T& t); // 复制构造函数 8 T(T&& t); 阅读全文
posted @ 2025-10-26 18:29 pithia 阅读(10) 评论(1) 推荐(0)