回复 10楼 peach5460
按照你说的第一种,重新写了下代码,但编译不能通过:
#include <iostream>
#include<string>
using namespace std;
template<class x>
int main()
{
x a;
x b;
void get()
{
cout<<"input the datas:"<<endl;
cin>>a>>b;
}
x max (x a, x b)
{
return a>b?a:b;
}
cout<<max()<<endl;
return 0;
}