gpt4 book ai didi

c++ - 包括仅当满足 static constexpr 时才编译的代码 C++

转载 作者:行者123 更新时间:2023-11-28 05:09:51 24 4
gpt4 key购买 nike

是否可以仅在静态 constexpr 具有特定值时包含要编译的代码?

以这个为例

static constexpr auto VERSION_MIN = 123;

如果数字设置为 124,则包含要编译的代码,否则将其排除。

基本上我有两个相同的源包,除了几行被认为是额外的或微小差异的代码。

我只想制作一个不需要重新编译来切换版本的通用应用程序。

我如何检查 constexpr 是否等于 124,我会只使用基本的控制结构吗?或者还有其他方法吗?

最佳答案

以下适用于 gcc 4.9:

static constexpr auto VERSION_MIN = 123;

void myFunction()
{
if (VERSION_MIN == 123) {
printf("This is version 123\n");
}
else {
printf("This is another version\n");
}
}

在 Linux 上(Win 现在没有这样的工具),您可以检查二进制文件是否不包含字符串“This is another version\n”。

这样你就可以替换

#ifdef VERSION_MIN 123
printf("This is version 123\n");
#else
printf("This is another version\n");
#endif

我的 IDE (QtCreator) 比预处理器代码更好地处理“纯”C++ 代码。

关于c++ - 包括仅当满足 static constexpr 时才编译的代码 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43747567/

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