变量的多重定义

Multiple definition of variable

这是我的代码:

main.cpp

#include "foo.h"

int main()
{
    return 0;
}

foo.h

#ifndef FOO_H
#define FOO_H

class Foo
{
public:
    Foo();
    int bar;
}

#endif

foo.cpp

#include "foo.h"

Foo::Foo()
{
    bar = 3;
}

编译时出现以下错误:

multiple definition of 'bar'

但是我在定义 bar 的头文件周围包含了保护,因此它怎么能被定义多次呢?

这是因为 class 声明 foofoo.h 中缺少分号。

这让编译器感到困惑(它似乎试图将您的构造函数定义解析为 foo 类型对象的名称)。

C++ 不是 Java 你知道的!