#include "stdafx.h"
#include <iostream>
template <class T>
void swap(T &a,T &b);
int main(){
using namespace std;
int i=20;
int j=30;
cout<<"i,j="<<i<<j<<endl;
swap(i,j);
cout<<i<<","<<j<<endl;
getchar();
return 0;
}
void swap(T &a,T &b){
int temp;
temp=a;
a=b;
b=temp;
}
为什么报错呢?
拉莫斯之舞
蝴蝶不菲
神不在的星期二