我不知道为什么指针不能作为引用传递给函数。也许我错过了错误的重点。
class Point{
public:
Point(){}
};
template<typename KEY,typename VALUE>
class TemplTest{
public:
TemplTest(){}
bool Set(const KEY& key,const VALUE& value){
return false;
}
};
template<typename KEY,typename VALUE>
class TemplTest<KEY*,VALUE>{
public:
TemplTest(){}
bool Set(KEY*& key,const VALUE& value){
return true;
}
};
int main(){
Point p1;
TemplTest<Point*,double> ht;
double n=3.14;
ht.Set(&p1,n);
return 0;
}
错误:
no matching function for call to 'TemplTest<Point*, double>::Set(Point*, double&)'
no known conversion for argument 1 from 'Point*' to 'Point*&'
请帮助,谢谢!
答案 0 :(得分:1)
因为引用无法绑定到右值,&p1
是一个没有名称的右值,可以解决这个问题
Point *p1_ptr = &p1;
Point *&p1_ptr_ref = p1_ptr;
ht.Set( p1_ptr_ref, n);
或者您可以将const
添加到密钥
bool Set( KEY* const& key,const VALUE& value){
// ^^^^^
return false;
}