현재 서명을 사용하여 g ++로 코드를 컴파일하려고 할 때 오류가 발생합니다.
cannot declare member function static void Foo::Bar(std::ostream&, const Foo::Node*) to have static linkage
내 질문은 두 가지입니다.
- 왜 이렇게 컴파일하지 않습니까?
- 올바른 서명은 무엇이며 왜 그렇습니까?
C ++을 사용할 때 서명은 항상 내 죽음이었습니다.
편집 : 다음은 클래스 헤더 파일입니다.
class Foo {
public:
Foo();
~Foo();
bool insert(const Foo2 &v);
Foo * find(const Foo2 &v);
const Foo * find(const Foo2 &v) const;
void output(ostream &s) const;
private:
//Foo(const Foo &v);
//Foo& operator =(const Foo &v);
//Not implemented; unneeded
struct Node {
Foo2 info;
Node *left;
Node *right;
};
Node * root;
static bool insert(const Foo2 &v, Node *&p);
static void output(ostream &s, const Node *p);
static void deleteAll(Node *p);
g ++ 오류의 모든 관련 줄을 포함해야 합니다.
—
키이스 Layne