摘要: 一、函数模板 #include<iostream>using namespace std;template<class T1,class T2>T1 add(T1 x,T2 y){ cout<<"("<<sizeof(T1)<<","<<sizeof(T2)<<")\t"; return x+y;} 阅读全文
posted @ 2019-11-22 19:43 Aspire-wdh 阅读(2141) 评论(0) 推荐(0) 编辑