我创建了自定义随机数生成器,并将它们的全局函数放在一个名为 SamRandom.h 的文件中。该文件如下所示:
#ifndef _SAM_RANDOM_H
#define _SAM_RANDOM_H
#include <cstdlib>
#include <ctime>
void InitialiseRandomSeed()
{
//...
}
//...
#endif
我正在一个非常复杂的面向对象程序中工作,该程序具有许多不同的组件。每次我添加一个无论如何都与该文件相关的文件时,我都会收到以下冲突消息:
LaserBase.obj:-1: error: LNK2005: "void __cdecl InitialiseRandomSeed(void)" (?InitialiseRandomSeed@@YAXXZ) already defined in main.obj
error: LNK1169: one or more multiply defined symbols found
在 MSVC 和 MinGW 上,我得到:
In function `Z20InitialiseRandomSeedv':
SamRandom.h:8: multiple definition of `InitialiseRandomSeed()'
error: first defined here
:-1: error: collect2: ld returned 1 exit status
为什么会这样?我认为预处理器指令应该防止这个问题发生......这真的让我发疯了!
PS:问题与函数名无关。
感谢您的任何努力