#include <iostream>
using namespace std;
template <typename T>
void fun(const T& x)
{
static int i = 10;
cout << ++i;
return;
}
int main()
{
fun<int>(1); // prints 11
cout << endl;
fun<int>(2); // prints 12
cout << endl;
fun<double>(1.1); // prints 11
cout << endl;
getchar();
return 0;
}
output : 11
12
11
常量文字如何直接作为函数的参考传递,如fun&lt; int&gt;(1)并没有给出编译错误?与普通数据类型函数调用
不同#include<iostream>
using namespace std;
void foo (int& a){
cout<<"inside foo\n";
}
int main()
{
foo(1);
return 0;
}
它给了我编译错误:
prog.cpp: In function 'int main()':
prog.cpp:12:8: error: invalid initialization of non-const reference of type 'int&' from an rvalue of type 'int'
foo(1);
^
prog.cpp:4:6: note: in passing argument 1 of 'void foo(int&)'
void foo (int& a){
^
请任何人解释如何在模板函数中传递常量文字。我认为可能是形成临时对象而不是函数调用但不确定
答案 0 :(得分:4)
这与模板无关。问题是一个函数需要const int&
而另一个函数需要int&
。
非const左值引用无法绑定到rvalues(例如文字),这就是在第二种情况下出现编译错误的原因。