std::unary_function
< cpp | utility | functional
定义于头文件 <functional>
|
||
template <typename ArgumentType, typename ResultType> struct unary_function; |
(C++11 中弃用) (C++17 中移除) |
|
unary_function
是用于创建拥有一个参数的函数的基类。
unary_function
不定义 operator() ;它期待导出类定义此运算符。 unary_function
只提供二个类型—— argument_type
和 result_type
——为模板形参所定义。
一些标准库函数适配器,如 std::not1 ,要求它们适配的函数对象已定义某些类型; std::not1 要求要适配的函数对象拥有名为 argument_type
的类型。从 unary_function
导出函数对象是令它们与那些适配器兼容的简易方式。
unary_function
在 C++11 中被弃用。
成员类型
类型 | 定义 |
argument_type
|
ArgumentType
|
result_type
|
ResultType
|
示例
运行此代码
#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; for (int i = 0; i < 10; ++i) v.push_back(i); std::cout << std::count_if(v.begin(), v.end(), std::not1(less_than_7())); /* C++11 解法: // 用某方法转型到 std::function<bool (int)> ——即使以 lambda std::cout << std::count_if(v.begin(), v.end(), std::not1(std::function<bool (int)>([](int i){ return i < 7; })) ); */ }
输出:
3
参阅
(C++11) |
包装具有指定函数调用签名的任意类型的可调用对象 (类模板) |
(C++11 中弃用)(C++17 中移除) |
从函数指针创建与适配器兼容的函数对象包装器 (函数模板) |
(C++11 中弃用)(C++17 中移除) |
适配器兼容的包装,用于包装一元函数的指针 (类模板) |
(C++11 中弃用)(C++17 中移除) |
与适配器兼容的二元函数基类 (类模板) |