摘要: 任务一: t.h 1 #pragma once 2 #include <string> 3 4 class T { 5 public: 6 T(int x = 0, int y = 0); 7 T(const T &t); 8 T(T &&t); 9 ~T(); 10 11 void adjust( 阅读全文
posted @ 2024-10-28 17:24 Bling888 阅读(9) 评论(0) 推荐(0) 编辑