摘要:
1 #include<stdio.h> 2 #include<typeinfo.h> 3 4 template <class T1,class T2> 5 class A{ 6 T1 i; 7 T2 j; 8 public: 9 A(T1 t1,T2 t2){i=t1;j=t2;} 10 bool 阅读全文
摘要:
templateT max(T a,T b){ return a>b?a:b;} 阅读全文
摘要:
1 #include<algorithm> 2 #include<iostream> 3 using namespace std; 4 void print(int x) 5 { 6 cout<<x<<' '; 7 } 8 int main() 9 { 10 int iArray[]={2,8,-1 阅读全文