std::unary_negate
来自 cppreference.com
< cpp | utility | functional
定义在头文件 <functional> 中 |
||
template< class Predicate > struct unary_negate : public std::unary_function<Predicate::argument_type, bool>; |
(C++11 之前) | |
template< class Predicate > struct unary_negate; |
(C++11 之后) (C++17 中已弃用) (C++20 中已移除) |
|
std::unary_negate
是一个包装函数对象,返回它所持有的单元谓词的补码。
单元谓词类型必须定义一个成员类型 argument_type
,该类型可以转换为谓词的参数类型。从 std::ref、std::cref、std::negate、std::logical_not、std::mem_fn、std::function、std::hash 或从另一个对 std::not1 的调用中获得的单元函数对象定义了此类型,就像从已弃用的 std::unary_function 派生的函数对象一样。
std::unary_negate
对象可以使用帮助函数 std::not1 轻松构造。
内容 |
[编辑] 成员类型
类型 | 定义 |
argument_type
|
Predicate::argument_type |
result_type
|
bool |
[编辑] 成员函数
(构造函数) |
使用提供的谓词构造一个新的 unary_negate 对象 (公有成员函数) |
operator() |
返回对存储的谓词的调用的结果的逻辑补码 (公有成员函数) |
std::unary_negate::unary_negate
explicit unary_negate( Predicate const& pred ); |
(C++14 之前) | |
constexpr explicit unary_negate( Predicate const& pred ); |
(C++14 之后) | |
使用存储的谓词 pred 构造一个 std::unary_negate
函数对象。
参数
pred | - | 谓词函数对象 |
std::unary_negate::operator()
bool operator()( argument_type const& x ) const; |
(C++14 之前) | |
constexpr bool operator()( argument_type const& x ) const; |
(C++14 之后) | |
返回调用 pred(x) 结果的逻辑非。
参数
x | - | 传递给谓词的参数 |
返回值
调用 pred(x) 结果的逻辑非。
[编辑] 示例
运行这段代码
#include <algorithm> #include <functional> #include <iostream> #include <vector> struct less_than_7 : std::unary_function<int, bool> { bool operator()(int i) const { return i < 7; } }; int main() { std::vector<int> v(7, 7); v[0] = v[1] = v[2] = 6; std::unary_negate<less_than_7> not_less_than_7((less_than_7())); // C++11 solution: // Use std::function<bool (int)> // std::function<bool (int)> not_less_than_7 = // [](int x)->bool { return !less_than_7()(x); }; std::cout << std::count_if(v.begin(), v.end(), not_less_than_7); }
输出
4
[编辑] 另请参阅
(C++17 中已弃用)(C++20 中已删除) |
包装函数对象,返回其持有的二元谓词的补码 (类模板) |
(C++11) |
任何可复制的可调用对象的可复制包装器 (类模板) |
(C++23) |
任何支持给定调用签名中限定符的可调用对象的仅移动包装器 (类模板) |
(C++17 中已弃用)(C++20 中已删除) |
构造自定义 std::unary_negate 对象 (函数模板) |
(C++11 中已弃用)(C++17 中已删除) |
从指向函数的指针创建与适配器兼容的函数对象包装器 (函数模板) |
(C++11 中已弃用)(C++17 中已删除) |
与适配器兼容的一元函数基类 (类模板) |