gpt4 book ai didi

c++ - 可以在折叠表达式中使用子表达式吗?

转载 作者:可可西里 更新时间:2023-11-01 15:53:15 35 4
gpt4 key购买 nike

下面是合法的折叠表达式吗?

template <std::size_t N, std::size_t... Ix>
bool in_range(std::index_sequence<Ix...>) {
return ((Ix < N) && ...);
}

它用 clang 编译但不是gcc

最佳答案

Clang 正在做正确的事情,来自 Folding expressions Proposal 的语法如下:

fold-expression:
( cast-expression fold-operator ... )
( ... fold-operator cast-expression )
( cast-expression fold-operator ... fold-operator cast-expression )

并包含适用于此案例的以下措辞(强调我的):

An expression of the form (... op e) where op is a fold-operator is called a unary left fold. An expression of the form (e op ...) where op is a fold-operator is called a unary right fold. Unary left folds and unary right folds are collectively called unary folds. In a unary fold, the cast-expression shall contain an unexpanded parameter pack.

(Ix < N)确实是一个强制转换表达式,所以这看起来是有效的。我们可以从 5 部分的语法中看到将我们带到那里的链条,如下所示:

cast-expression -> unary-expression -> postfix-expression -> 
primary-expression -> (expression)

T.C.指出以下 gcc 错误报告 [c++1z] "binary expression in operand of fold-expression" error when folding an expression它报告了类似的问题,但仍未得到证实。

看起来这在 gcc 中对于二进制左右折叠也有问题,例如:

return ( (Ix < N) && ... &&  (N < 10) );

和:

return ( (N < 10) && ... &&  (Ix < N) );

关于c++ - 可以在折叠表达式中使用子表达式吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33748391/

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