【问题标题】:C++ value evaluation in concepts概念中的 C++ 值评估
【发布时间】:2021-05-04 15:57:01
【问题描述】:

如何正确评估概念声明/要求子句中的值?

考虑一个概念is_red,它检查给定类型是否有一个color静态cx成员设置为/*undefined*/::red,其中`/undefined/在一个枚举中;

template <typename T>
concept is_red = requires(T) {
   { T::color == decltype(T::color)::red };
};

这显然是错误的,因为它只检查合成器是否定义明确。
因此,这将无法按预期工作:

namespace apple {
   enum colors{red, green, yellow };

   struct granny_smith{
      constexpr static auto color = colors::green;
   };
}

static_assert(is_red<apple::granny_smith>); // should fail, but it does not using the previous concept implementation

godbolt here 上查看实时示例。

这是我目前评估概念值的方式:

template <bool condition>
using if_t = std::conditional_t<condition, std::true_type, std::false_type>;

template <typename T>
concept is_red = requires(T) {
   { if_t<(T::color == decltype(T::color)::red)> } -> std::same_as<std::true_type>;
};

效果很好,但看起来有点奇怪。

也许还有另一种更简洁的方法来处理 C++ 概念中的值评估?

【问题讨论】:

    标签: c++ c++20 c++-concepts


    【解决方案1】:

    概念可以在右侧采用任意布尔表达式。 requires-expression 就是这样一种布尔表达式,但不一定非要如此。可以直接写比较:

    template <typename T>
    concept is_red = T::color == decltype(T::color)::red;
    

    【讨论】:

      猜你喜欢
      • 2018-09-26
      • 2019-04-15
      • 2019-04-15
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多