std::negation
来自 cppreference.cn
定义于头文件 <type_traits> |
||
template< class B > struct negation; |
(C++17 起) | |
形成类型特性 B 的逻辑非。
类型 std::negation<B> 是一个 一元类型特性 (UnaryTypeTrait),其基本特性为 std::bool_constant<!bool(B::value)>。
如果程序为 std::negation
或 std::negation_v
添加特化,则行为未定义。
目录 |
[编辑] 模板参数
B | - | 任何类型,使得表达式 bool(B::value) 是有效的常量表达式。 |
[编辑] 辅助变量模板
template< class B > constexpr bool negation_v = negation<B>::value; |
(C++17 起) | |
继承自 std::integral_constant
成员常量
value [静态] |
如果 B 有一个成员 ::value,且当它被显式转换为 bool 时为 false,则为 true,否则为 false。(public static 成员常量) |
成员函数
operator bool |
将对象转换为 bool,返回 value (公开成员函数) |
operator() (C++14) |
返回 value (公开成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool |
类型
|
std::integral_constant<bool, value> |
[编辑] 可能的实现
template<class B> struct negation : std::bool_constant<!bool(B::value)> { }; |
[编辑] 注意
特性测试宏 | 值 | 标准 | 特性 |
---|---|---|---|
__cpp_lib_logical_traits |
201510L |
(C++17) | 逻辑运算符类型特性 |
[编辑] 示例
运行此代码
#include <type_traits> static_assert( std::is_same< std::bool_constant<false>, typename std::negation<std::bool_constant<true>>::type>::value, ""); static_assert( std::is_same< std::bool_constant<true>, typename std::negation<std::bool_constant<false>>::type>::value, ""); static_assert(std::negation_v<std::bool_constant<true>> == false); static_assert(std::negation_v<std::bool_constant<false>> == true); int main() {}
[编辑] 参阅
(C++17) |
可变参数逻辑 AND 元函数 (类模板) |
(C++17) |
可变参数逻辑 OR 元函数 (类模板) |
(C++11)(C++17) |
指定类型和指定值的编译时常量 (类模板) |