摘要: 四、实验内容 1.实验任务1 //在C++中定义和使用类模板 task1_1.cpp #include <iostream> using namespace std; // 类A的定义 class A{ public: A(int x0, int y0): x{ x0 }, y{ y0 } {} v 阅读全文
posted @ 2023-11-30 19:20 夏添添 阅读(63) 评论(0) 推荐(0)