有人可以建议吗?
如果const
在 C++ 中默认为内部链接,为什么在下面的代码中会出现多个定义错误?
首先,文件dem.h
:
#ifndef _DEM_H_
#define _DEM_H_
class Dem {
public:
static const int i;
};
const int Dem::i = 10;
#endif
他们imp1.cpp
:
#include "dem.h"
#include <iostream>
using namespace std;
extern int foo();
int main() {
cout << foo() << endl;
}
和imp2.cpp
:
#include "dem.h"
int foo() {
return Dem::i ;
}
我使用以下命令和结果进行编译:
$ g++ imp1.cpp imp2.cpp
/tmp/ccmGt0OY.o:imp2.cpp:(.rdata+0x0): multiple definition of `Dem::i'
/tmp/cc5sN7dz.o:imp1.cpp:(.rdata+0x0): first defined here
collect2: ld returned 1 exit status