gpt4 book ai didi

c++ - integral_constant 的编译时 bool 运算?

转载 作者:行者123 更新时间:2023-11-27 23:54:07 31 4
gpt4 key购买 nike

在C++标准库中,有没有对integral_constant<bool, X>进行 bool 运算的模板类型? (其中 Xtruefalse )?

作为一个简单的例子,您有两个这样的函数重载:

void foo_impl(false_type){
cout << "false" <<endl;
}

void foo_impl(true_type){
cout << "true" <<endl;
}

这些函数中的一个由另一个函数根据恒定条件选择:

struct first_tag{};
struct second_tag{};
struct third_tag{};

template <typename TTag>
void foo(TTag role){
foo_impl(typename constant_or<typename is_same<role, first_tag>::type, typename is_same<role, second_tag>::type>::type{});
}

在这种情况下,true foo_impl() 的版本如果 foo() 的参数将被调用类型为 first_tagsecond_tag ,因此使用假设类型 constant_or .

虽然编写我自己的 constant_or 版本很简单,C++标准库中是否已经存在这样的类型?

最佳答案

首先让我们修正你的错字

template <typename TTag>
void foo(TTag){
foo_impl(typename constant_or<typename is_same<TTag, first_tag>::type, typename is_same<TTag, second_tag>::type>::type{});
}

is_same 作用于类型而不是值。

然后让我们指出您可以只使用 is_same 中的值。

template <typename TTag>
void foo(TTag){
foo_impl(integral_constant<bool, is_same_v<TTag, first_tag> | is_same_v<TTag, second_tag>>{});
}

你就完成了。也节省了很多打字,这总是一个加号。

关于节省打字的注意事项(因为上帝禁止)

template<bool B>
using bool_constant = integral_constant<bool, B>;

由标准定义。

关于c++ - integral_constant 的编译时 bool 运算?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43912332/

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