gpt4 book ai didi

c++ - 提供给类函数宏调用的参数过多

转载 作者:IT老高 更新时间:2023-10-28 22:25:23 25 4
gpt4 key购买 nike

假设我们有一个 std::aligned_storage 的实现。我为 alignofalignas 运算符定义了两个宏。

#include <iostream>
#include <cstddef>

#define ALIGNOF(x) alignof(x)
#define ALIGNAS(x) alignas(x)

template<std::size_t N, std::size_t Al = ALIGNOF(std::max_align_t)>
struct aligned_storage
{
struct type {
ALIGNAS(Al) unsigned char data[N];
};
};

int main()
{
// first case
std::cout << ALIGNOF(aligned_storage<16>::type); // Works fine

// second case
std::cout << ALIGNOF(aligned_storage<16, 16>::type); // compiler error
}

在第二种情况下,我得到问题标题中的错误(使用 Clang 编译,使用 GCC 时出现类似错误)。如果我分别用 alignofalignas 替换宏,则不会出现错误。 这是为什么?

在你开始问我为什么要这样做之前 - 原始宏具有 C++98 兼容代码,例如 __alignof__attribute__((__aligned__(x))) 并且这些是特定于编译器的,所以宏是我唯一的选择...

编辑:因此,根据标记为重复的问题,额外的一组括号将解决该问题。

std::cout << ALIGNOF((aligned_storage<16, 16>::type)); // compiler error

它没有。那么,我该怎么做呢? (令人满意的问题?)

最佳答案

C/C++ 预处理器不知道任何 C/C++ 语言结构,它只是具有自己的语法和规则的文本预处理器。根据该语法,以下代码 ALIGNOF(aligned_storage<16, 16>::type)是调用宏ALIGNOF有 2 个参数( aligned_storage<1616>::type ),因为括号内有逗号。

我建议你到 typedef aligned_storage<16, 16>并在此宏调用中使用该类型。

关于c++ - 提供给类函数宏调用的参数过多,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38030048/

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