类型特性定义一个编译时基于模板的结构,以查询或修改类型的属性。
试图特化定义于
定义于
std::conjunction
template |
(1) | (C++17 起) |
组成类型特性 B...
的逻辑合取,等效地在特性序列上进行逻辑与。
特化 std::conjunction
B1, ..., BN
中有 bool(Bi::value) == false ,则为首个 Bi
,否则若无这种类型,则为 BN
。不隐藏 conjunction
及 operator=
以外的基类成员名,而它们在 conjunction
中无歧义地可用。
合取是短路的:若存在模板类型参数 Bi
满足 bool(Bi::value) == false ,则实例化 conjunctionj > i
的 Bj::value 的实例化。
B... | - | 每个要实例化 Bi::value 的模板参数 Bi 必须可用作基类,且定义了可转换到 bool 的成员 value |
template |
(C++17 起) |
template struct conjunction : std::true_type { };
template struct conjunction : B1 { };
template
struct conjunction
: std::conditional_t, B1> {};
conjunction
的特化不需要继承自 std::true_type 或 std::false_type :它简单地继承自首个 B
,其 ::value
显式转换为 bool 后为 false ,或在它们都转换为 true 时继承自最后的 B
。例如, std::conjunction
conjunction
的短路实例化异于折叠表达式:类似 (... && Bs::value) 的折叠表达式实例化 Bs
中的每个 B
,而 std::conjunction_v
#include
#include
namespace std
{
template< bool B, class T, class F >
using conditional_t = typename conditional::type;
template< bool B, class T = void >
using enable_if_t = typename enable_if::type;
}
namespace std
{
template struct conjunction : std::true_type { };
template struct conjunction : B1 { };
template
constexpr bool conjunction_v = conjunction::value;
template
struct conjunction
: std::conditional_t, B1> {};
}
// 若所有 Ts... 都拥有等同于 T 的类型,则启用 func
template
std::enable_if_t...>>
func(T, Ts...)
{
std::cout << "all types in pack are T" << std::endl;
}
// 否则
template
std::enable_if_t < !std::conjunction_v... >>
func(T, Ts...)
{
std::cout << "not all types in pack are T" << std::endl;
}
int main()
{
func(1, 2, 3);
func(1, 2, "hello!");
return 0;
}
all types in pack are T
not all types in pack are T