摘要: 任务一 (模板类) #include <iostream> using namespace std; // 类A的定义 class A{ public: A(int x0=0, int y0=0): x{x0}, y{y0} {} void show() const { cout << x << " 阅读全文
posted @ 2021-10-28 01:11 庚瘤君 阅读(59) 评论(2) 推荐(0)