摘要: 实验任务1: T.h源代码: 1 #include<string> 2 3 //类T:声明 4 5 class T { 6 //对象属性方法 7 public: 8 T(int x = 0, int y = 0); //普通构造函数 9 T(const T& t); //复制构造函数 10 T(T& 阅读全文
posted @ 2025-10-25 22:10 王宝炜 阅读(18) 评论(1) 推荐(0)