gpt4 book ai didi

c++ - 这应该是 constexpr 还是不?

转载 作者:行者123 更新时间:2023-12-01 12:42:39 25 4
gpt4 key购买 nike

考虑这个代码片段( godbolt ):

#include <cstdio>
#include <string>
#include <string_view>

struct Option
{
std::string_view name;

constexpr Option( std::string_view const n ) noexcept : name{n} {}
};

template< std::size_t N >
class TransformedOption : public Option
{
public:
constexpr TransformedOption( std::string_view const nameStr ) :
Option{ { nameStorage_, N - 1 } }
{
for ( auto i = 0U; i < N; ++i )
{
if ( nameStr[ i ] == '_' ) { nameStorage_[ i ] = '-'; }
else { nameStorage_[ i ] = nameStr[ i ]; }
}
}
private:
char nameStorage_[ N ] = {};
};

template< std::size_t N >
constexpr TransformedOption< N > make( char const (&nameStr)[ N ] ) noexcept
{
return TransformedOption< N >{ nameStr };
}

int main()
{
/*constexpr*/ auto t = make( "abcd_efgh_ijkl_mnop_peqst" );
std::printf( "%s\n", t.name.data() );
return 0;
}
基本上,我想通过替换每个 _ 来执行编译时字符串转换。与 -并确保最终的二进制文件只包含转换后的字符串(而不是原始字符串)。
我试过 Clang 10.0.1、GCC 10.2 和 MSVC 19.24(见上面的 Godbolt 链接)。奇怪的东西如下:
  • 如果 constexprmain 中被注释掉,然后 MSVC 生成不正确的代码(即字符串的运行时转换),但 GCC 和 clang 生成正确的代码(即转换后的字符串常量被嵌入到程序集中)
  • 如果 constexpr未在 main 中注释掉,然后 MSVC 生成正确的代码(即转换后的字符串常量被嵌入到程序集中),但是 GCC 和 clang 都无法编译代码,说明 t未由常量表达式初始化(​​请参阅 godbolt )。最奇怪的是 GCC 错误信息,它输出 变形 string 在它的错误中,并指出它不是一个常量表达式。

  • 那么,根据 C++ 标准,哪个编译器是正确的?我应该向谁报告错误?给 GCC 和 Clang 的人还是给微软?

    最佳答案

    constexprt 时,声明适用于所有编译器也被声明为静态。

    constexpr static auto t = make( "abcd_efgh_ijkl_mnop_peqst" );
    原因是 string_view .它是一种引用类型,用于引用正在初始化的对象。因此,以一种或另一种方式,您正在初始化 contexpr指针。现在,一个 constexpr指针(未初始化为空指针)只能使用具有静态存储持续时间的对象的地址进行初始化。

    [expr.const] (emphasis mine)

    11 A constant expression is either a glvalue core constantexpression that refers to an entity that is a permitted result of aconstant expression (as defined below), or a prvalue core constantexpression whose value satisfies the following constraints:

    • if the value is an object of class type, each non-static data member of reference type refers to an entity that is a permittedresult of a constant expression,
    • if the value is of pointer type, it contains the address of an object with static storage duration, the address past the end of suchan object ([expr.add]), the address of a non-immediate function, or anull pointer value,
    • if the value is of pointer-to-member-function type, it does not designate an immediate function, and
    • if the value is an object of class or array type, each subobject satisfies these constraints for the value.

    An entity is a permitted result of a constant expression if it is anobject with static storage duration that either is not a temporaryobject or is a temporary object whose value satisfies the aboveconstraints, or if it is a non-immediate function.


    当您声明对象为自动存储期时, string_view 中的指针不是用静态对象的地址初始化的。因此 GCC 和 Clang 提示是理所当然的。
    自我引用使这变得有趣和棘手。

    关于c++ - 这应该是 constexpr 还是不?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63342971/

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