#include<iostream>
using namespace std;
template <class T>
void myswap(T & tmp1, T & tmp2)
{
T temp;
temp = tmp1;
tmp1 = tmp2;
tmp2 = temp;
return;
}
main()
{
int x = 1;
int y = 20;
double p = 10.9, q = 23.36;
char s = 'o', t = 'u';
myswap(x, y);
cout << "x=" << x << "and y=" << y << endl;
myswap(p, q);
cout << "p=" << p<< "and q=" << q << endl;
myswap(s, t);
cout << "s=" << s << "and t=" << t << endl;
return 0;
}
我使用visual studio 2013.当我运行此代码时,编译器给我提供消息“错误:缺少类型说明符 - 假定为int .C ++不支持默认int”。
答案 0 :(得分:3)
函数main应具有返回类型int
int main()
答案 1 :(得分:3)
就像友情消息所说,它不是主要的()而是 int main() 要么 int main(void) 要么 int main(int argc,char * argv [])