我在模板类的成员函数中遇到了以下问题:
#include <map>
using std::map;
template <typename A,typename B>
class C {
public:
B f(const A&,const B&) const;
private:
map<A,B> D;
};
template <typename A,typename B>
B C<A,B>::f(const A&a,const B&b) const {
map<A,B>::const_iterator x = D.find(a);
if(x == D.end())
return b;
else
return x->second;
}
当我有 g++ 编译这个时,我得到以下错误:
Bug.C: In member function 'B C<A,B>::f(const A&, const B&) const':
Bug.C:12: error:expected ';' before 'x'
Bug.C:13: error: 'x' was not declared in this scope
但是,当我制作类和函数的非模板版本时,A 和 B 都是 int ,它编译没有问题。这个错误有点神秘,因为我无法想象为什么它需要一个';' 在“x”之前。