gpt4 book ai didi

c++ - 如何使用 std::is_same 生成编译时错误?

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

我正在使用第三方 API,其中包含一个包含一组 typedef 的头文件。在过去的 4 年里,一些 typedef 发生了微小的变化(例如,在 unsigned/signed 之间切换,从 int 变为 long 等)。

我想在我的代码中添加编译时检查,以便我知道特定的 typedef 是否已更改。我正在考虑添加如下内容:

#if !std::is_same<::ApiType, int>::value
#error Type has changed
#endif

当我在各种 typedef 上尝试这个时,我发现编译错误总是被抛出。

我设置了一个小的控制台程序,它显示了同样的问题(即对于预处理器的使用总是错误的)但是在预处理器之外没有问题:

#include "stdafx.h"
#include <Windows.h>
#include <type_traits>

int main()
{
#if std::is_same<int, int>::value
const auto aa = 14; // omitted
#else
const auto bb = 17;
#endif

#if std::is_same<::DWORD, int>::value
const auto cc = 14; // omitted
#else
const auto dd = 17;
#endif

const auto a = std::is_same<int, int>::value; // true
const auto b = std::is_same<::DWORD, int>::value; // false
const auto c = std::is_same<::DWORD, unsigned long>::value; // true

return 0;
}

我正在使用 Visual Studio 2015。

我如何对预期类型实现这样的编译时检查(特别是在类型不相同时产生编译时错误)?

最佳答案

预处理器对类型一无所知。 (提示:它在 编译之前运行,因此称为“pre”。)

你要的是static_assert .例如:

static_assert(std::is_same<::ApiType, int>::value,
"Type has changed");

不过,既然是断言,也许应该说“有没有”。

你几乎可以把它放在任何地方,甚至可以放在任何函数之外。

关于c++ - 如何使用 std::is_same 生成编译时错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36090407/

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