摘要: 1 #include<iostream> 2 using namespace std; 3 4 template<class T> 5 class mypair { 6 T a, b; 7 public: 8 mypair(T first, T second) 9 { 10 a = first; 1 阅读全文
posted @ 2023-05-12 22:30 Code13 阅读(14) 评论(0) 推荐(0) 编辑