这是一个面试问题,已经完成了。
哪一行有错误?
#include<iostream>
template<class T> void foo(T op1, T op2)
{
std::cout << "op1=" << op1 << std::endl;
std::cout << "op2=" << op2 << std::endl;
}
template<class T>
struct sum
{
static void foo(T op1, T op2)
{
std::cout << "sum=" << op2 << std::endl ;
}
};
int main()
{
foo(1,3); // line1
foo(1,3.2); // line2
foo<int>(1,3); // line3
foo<int>(1, '3') ; // line 4
sum::foo(1,2) ; // line 5 ,
return 0;
}
第 2 行有错误,因为模板参数与定义不匹配。第 5 行有错误,因为缺少模板参数。
但是,第 1 行不是错误,我不知道为什么,它不是也错过了模板参数吗?
谢谢 !