gpt4 book ai didi

c++ - 断言中的折叠表达式在某些机器上编译,但在其他机器上不编译

转载 作者:太空狗 更新时间:2023-10-29 23:48:47 29 4
gpt4 key购买 nike

我有以下代码(出于演示目的)应该使用 C++17 折叠表达式断言所有参数的计算结果为真。

#include <cassert>

template<typename... Ts>
void fn(Ts... ts)
{
assert(ts && ...);
}

int main()
{
fn(true, true, true);
fn(true, true, false, true);
}

在 Coliru 上,它按预期工作;它不在我的机器上。我得到错误

In file included from /usr/include/c++/8.2.1/cassert:44,
from foldexpr.cpp:1:
foldexpr.cpp: In function ‘void fn(Ts ...)’:
foldexpr.cpp:6:15: error: expected ‘)’ before ‘&&’ token
assert(ts && ...);
^~
foldexpr.cpp:6:5: error: expected ‘;’ before ‘)’ token
assert(ts && ...);
^~~~~~

使用 gcc 版本 8.2.1 20180831。在使用 gcc 版本 5.4.0 20160609 的 Ubuntu 上我得到

In file included from /usr/include/c++/5/cassert:43:0,
from foldexpr.cpp:1:
foldexpr.cpp: In function ‘void fn(Ts ...)’:
foldexpr.cpp:6:18: error: expected primary-expression before ‘...’ token
assert(ts && ...);
^
foldexpr.cpp:6:18: error: expected ‘)’ before ‘...’ token
foldexpr.cpp:6:22: error: expected ‘)’ before ‘;’ token
assert(ts && ...);
^
foldexpr.cpp:6:22: error: parameter packs not expanded with ‘...’:
foldexpr.cpp:6:22: note: ‘ts’

这是一个表格,其中列出了它在相应的编译器版本中起作用的地方和不起作用的地方。

| OS              | GCC               | Clang             |
|-----------------|-------------------|-------------------|
| Arch | no (v8.2.1) | no (v7.0.0) |
| Ubuntu (Coliru) | yes (v8.1.0) | yes (v5.0.0) |
| Debian | yes (v6.3.0) | - |
| ? (Godbolt) | no (all versions) | no (all versions) |

因为它的工作/失败如此随意,我觉得这是标准库的问题,默认情况下 clang 使用 libstdc++,我相信,这可以解释为什么它在系统上对两者都有效或无效。

这段代码应该编译吗?如果是,我该如何让它发挥作用?如果不是,是否是编译器错误?

PS:在 Coliru 上我已经能够使用相当复杂的折叠表达式,但我还没有在其他机器上尝试过。

最佳答案

折叠表达式必须采用以下形式

( pack op ... )
( ... op pack )
( pack op ... op init )
( init op ... op pack )

你的

assert(ts && ...)

不遵循那个,它缺少括号。你需要

assert((ts && ...))

使其在语法上正确。

关于c++ - 断言中的折叠表达式在某些机器上编译,但在其他机器上不编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53071662/

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