请向我解释一下,这种方法的声明/描述中有什么错误?
class Set
{
struct Node {
// ...
};
// ...
Node* &_getLink(const Node *const&, int) const;
// ...
};
Node* &Set::_getLink(const Node *const &root, int t) const
{
// ...
}
我没有看到错误,但编译器(MS VS C++)给出了许多语法错误。