定义函数模板的语法形式:
template
返回类型 函数名(形参表) {
x05//函数体
}
其中,class也可以为typename
例如:
void Swap(T& a,T& b) {
T t=a; a=b; b=t;