摘要: 实验任务1 代码: t.h: 1 #pragma once 2 3 #include<string> 4 5 class T { 6 public: 7 T(int x = 0, int y = 0); 8 T(const T& t); 9 T(T&& t); 10 ~T(); 11 void ad 阅读全文
posted @ 2024-10-23 18:52 霍学金 阅读(23) 评论(0) 推荐(0) 编辑