gpt4 book ai didi

c++ - 在不同的编译单元中使用不同的编译标志编译相同的头文件

转载 作者:搜寻专家 更新时间:2023-10-31 01:38:03 29 4
gpt4 key购买 nike

我遇到了一个奇怪的问题,它打破了我对编译单元封装的理解。

简而言之,我有一个从 header 中获取的通用内联函数。
我将其包含到 2 个不同的 .cpp 文件中,具有不同的 #define 宏。
但我最终在机器人编译单元中得到了相同的实现。

通用.h:

#include <iostream>

inline void printA()
{
#ifdef YES
std::cout << " yes" << std::endl;
#else
std::cout << " no" << std::endl;
#endif
}

文件1.h:

void print1();

文件1.cpp:

#define YES
#include "Common.h"
#include "File1.h"

void print1()
{
printA();
}

文件2.h:

void print2();

文件2.cpp

#include "Common.h"
#include "File2.h"
void print2()
{
printA();
}

主要.cpp:

#include "File1.h"
#include "File2.h"

int main(int argc, char* argv[])
{

print1();
print2();

return 0;
}

这个例子的输出是:

yes
yes

我希望它是:

yes
no

那么,为什么在两个编译单元中采用相同的实现?
公共(public)功能甚至是内联的....

我怎样才能得到我的“预期”结果?

而且,为什么选择"is"实现?只是编译顺序的问题?

顺便说一句,我在 GCC 4.8 和 VS2012 上得到了相同的结果

最佳答案

标准(这里是N4527)在3.2 一个定义规则/6

There can be more than one definition of a class type (Clause 9), enumeration type (7.2), inline function with external linkage (7.1.2), class template (Clause 14), non-static function template (14.5.6), static data member of a class template (14.5.1.3), member function of a class template (14.5.1.1), or template specialization for which some template parameters are not specified (14.7, 14.5.5) in a program provided that each definition appears in a different translation unit, and provided the definitions satisfy the following requirements. Given such an entity named D defined in more than one translation unit, then (6.1)

— each definition of D shall consist of the same sequence of tokens; and

...

If the definitions of D satisfy all these requirements, then the behavior is as if there were a single definition of D. If the definitions of D do not satisfy these requirements, then the behavior is undefined.

所以用“否”替换"is"是 ODR 违规,会导致未定义的行为。

对于获得"is"的结果,我可以猜测编译器会随机选择一个函数,因为它们必须相同。

另一方面,如果您将函数设置为static,您将在每个翻译单元中拥有不同的局部函数。

关于c++ - 在不同的编译单元中使用不同的编译标志编译相同的头文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33396435/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com