gpt4 book ai didi

c++ - 表达式未评估为常量两级 constexpr 函数(编译器错误?)

转载 作者:行者123 更新时间:2023-11-30 04:46:13 25 4
gpt4 key购买 nike

我有以下代码:

#include <iostream>
template<int I>
class A
{
public:
inline constexpr static int size() { return I; }
};

template<typename T>
inline constexpr auto size(const T& arg) noexcept -> decltype(arg.size())
{
return arg.size();
}

template<typename T>
inline constexpr void twoLevel(const T& arg) noexcept
{
static_assert(size(arg) > 0);
}

int main()
{
A<5> a;
static_assert(size(a)>0); //this works
twoLevel(a); // this does not
return 0;
}

无法在 msvc 上编译并出现错误 expression did not evaluate to a constant,但适用于 gcc。 gcc 是否接受某些未定义的行为?或者它是 msvc 的编译器错误?这是一个演示:godbolt code

最佳答案

来自 [expr.const]/4 :

An expression e is a core constant expression unless the evaluation of e, following the rules of the abstract machine, would evaluate one of the following expressions:

  • [...]
  • an id-expression that refers to a variable or data member of reference type unless the reference has a preceding initialization and either
    • it is usable in constant expressions or
    • its lifetime began within the evaluation of e;
  • [...]

在:

static_assert(size(arg) > 0);

我们有一个 id-expression 引用一个引用类型的变量,引用没有预先初始化,所以我们没有常量表达式。

我认为:

static_assert(size(a) > 0);

之所以有效,是因为“先于初始化”——我们通过直接将引用 arg 绑定(bind)到变量 a 来进入常量评估,而在另一种情况下,我们绑定(bind) a引用另一个引用。

不过,如果您按值(value)衡量,两者都应该有效。

关于c++ - 表达式未评估为常量两级 constexpr 函数(编译器错误?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56891485/

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