对于指针类型的类模板特化,调用没有匹配函数

时间:2013-05-04 23:16:00

标签: c++ template-specialization

我不知道为什么指针不能作为引用传递给函数。也许我错过了错误的重点。

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*&'

请帮助,谢谢!

1 个答案:

答案 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;
    }