gpt4 book ai didi

c++ - constexpr 类的设计 : merging constexpr and non-constexpr versions?

转载 作者:可可西里 更新时间:2023-11-01 16:27:42 26 4
gpt4 key购买 nike

考虑一个在运行时只包装一个值的类:

template <typename Type>
class NonConstValue
{
public:
NonConstValue(const Type& val) : _value(val) {;}
Type get() const {return _value;}
void set(const Type& val) const {_value = val;}
protected:
Type _value;
};

以及它的 constexpr 版本:

template <typename Type>
class ConstValue
{
public:
constexpr ConstValue(const Type& val) : _value(val) {;}
constexpr Type get() const {return _value;}
protected:
const Type _value;
};

问题1:你能确认constexpr版本的设计方式是正确的吗?

问题 2:如何将这两个类混合到一个名为 Value 的类中,它可以是 constexpr 构造的或运行时构造的,其值可以是 get( ) 在运行时还是编译时?

编辑:问题 3:如果 get() 定义在 .cpp 文件中,如果我希望 get() 被内联,如果它不是constexpr 函数的正确声明是什么?是吗

constexpr inline Type get();

inline constexpr Type get()

还是别的什么?

最佳答案

只需将 constexpr 说明符添加到每个可能是常量表达式的函数。

template <typename Type>
class Value
{
public:
constexpr Value(Type const& val) : _value(val) {}
constexpr Type const& get() const {return _value;}
void set(Type const& val) {_value = val;}
protected:
Type _value;
};

你不需要 constnon-const 版本,因为这可以通过实例化模板 Value 来完成常量非常量 类型。

您不需要constexpr非constexpr 版本,constexpr 意味着潜在的常量表达式表达式是否最终成为一个常量表达式取决于它的参数。表达式是否最终在编译时 求值取决于上下文和实现。

关于c++ - constexpr 类的设计 : merging constexpr and non-constexpr versions?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14390848/

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