命名空间
变体
操作

std::not1

来自 cppreference.com
< cpp‎ | utility‎ | functional
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三元比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
函数对象
函数调用
(C++17)(C++23)
恒等函数对象
(C++20)
透明运算符包装器
(C++14)
(C++14)
(C++14)
(C++14)  
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)

旧的绑定器和适配器
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)  
(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
not1
(直到 C++20*)
(直到 C++20*)
(直到 C++17*)(直到 C++17*)
(直到 C++17*)(直到 C++17*)

(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
 
定义在头文件 <functional>
template< class Predicate >
std::unary_negate<Predicate> not1( const Predicate& pred );
(直到 C++14)
template< class Predicate >
constexpr std::unary_negate<Predicate> not1( const Predicate& pred );
(自 C++14)
(C++17 中已弃用)
(C++20 中已移除)

std::not1 是一个辅助函数,用于创建一个函数对象,该函数对象返回传递的一元谓词函数的补码。创建的函数对象是 std::unary_negate<Predicate> 类型的。

一元谓词类型必须定义一个成员类型 argument_type,该类型可转换为谓词的参数类型。从 std::refstd::crefstd::negatestd::logical_notstd::mem_fnstd::functionstd::hash 或从另一个对 std::not1 的调用获得的函数对象都定义了此类型,与从已弃用的 std::unary_function 派生的函数对象一样。

内容

[编辑] 参数

pred - 一元谓词

[编辑] 返回值

std::not1 返回 std::unary_negate<Predicate> 类型,使用 pred 构造的对象。

[编辑] 异常

(无)

[编辑] 示例

#include <algorithm>
#include <functional>
#include <iostream>
#include <iterator>
#include <numeric>
#include <vector>
 
struct LessThan7 : std::unary_function<int, bool>
{
    bool operator()(int i) const { return i < 7; }
};
 
int main()
{
    std::vector<int> v(10);
    std::iota(std::begin(v), std::end(v), 0);
 
    std::cout << std::count_if(begin(v), end(v), std::not1(LessThan7())) << '\n';
 
    // the same as above using std::function
    std::function<bool(int)> less_than_9 = [](int x) { return x < 9; };
    std::cout << std::count_if(begin(v), end(v), std::not1(less_than_9)) << '\n';
}

输出

3
1

[编辑] 另请参阅

(C++17)
创建一个函数对象,该函数对象返回它所持有的函数对象的补码。
(函数模板) [编辑]
(C++17 中已弃用)(C++20 中已移除)
返回它所持有的一个谓词的补码的包装器函数对象。
(类模板) [编辑]
(C++11)
任何可复制可调用对象的复制可调用包装器。
(类模板) [编辑]
任何支持给定调用签名中的限定符的可调用对象的移动专用包装器。
(类模板) [编辑]
(C++17 中已弃用)(C++20 中已移除)
构造自定义的 std::binary_negate 对象
(函数模板) [编辑]
(C++11 中已弃用)(C++17 中已移除)
从指向函数的指针创建与适配器兼容的函数对象包装器
(函数模板) [编辑]
(C++11 中已弃用)(C++17 中已移除)
与适配器兼容的单目函数基类
(类模板) [编辑]