摘要: 任务一: 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 @ 2025-10-28 21:58 Little_Zcy 阅读(9) 评论(1) 推荐(0)