std::binary_function
来自cppreference.com
< cpp | utility | functional
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <functional> 中定义
|
||
template< class Arg1, |
(已弃用) | |
binary_function
是一个基类,用于创建带有两个参数的函数对象.原文:
binary_function
is a base class for creating function objects with two arguments.binary_function
不定义operator();预期派生类定义此。 binary_function
只有三种 - first_argument_type
,second_argument_type
和result_type
- 模板参数的定义.原文:
binary_function
does not define operator(); it is expected that derived classes will define this. binary_function
provides only three types - first_argument_type
, second_argument_type
and result_type
- defined by the template parameters.一些标准库函数对象适配器,如std::not2,需要的函数对象他们适应有某些类型的定义;std::not2适合需要的函数对象有两种类型,名称
first_argument_type
second_argument_type
。需要两个参数的函数对象,从binary_function
推导是一个简单的方法,使他们与这些适配器兼容.原文:
Some standard library function object adaptors, such as std::not2, require the function objects they adapt to have certain types defined; std::not2 requires the function object being adapted to have two types named
first_argument_type
and second_argument_type
. Deriving function objects that take two arguments from binary_function
is an easy way to make them compatible with those adaptors.binary_function
被废弃,在C + +11。 std::function和其他标准库函数对象,它的功能已经过时了,它定义了需要的类型.原文:
binary_function
is deprecated in C++11. Its functionality has been made obsolete by std::function and other standard library function objects, which define the necessary types.[编辑] 会员类型
类型
|
Definition |
first_argument_type
|
Arg1
|
second_argument_type
|
Arg2
|
result_type
|
Result
|
[编辑] 示例
#include <algorithm> #include <functional> #include <iostream> #include <vector> struct same : std::binary_function<int, int, bool> { bool operator()(int a, int b) const { return a == b; } }; int main() { std::vector<int> v1{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; std::vector<int> v2{10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 }; std::vector<bool> v3(v1.size()); std::transform(v1.begin(), v1.end(), v2.begin(), v3.begin(), std::not2(same())); std::cout << std::boolalpha; for (std::size_t i = 0; i < v1.size(); ++i) std::cout << v1[i] << ' ' << v2[i] << ' ' << v3[i] << '\n'; }
输出:
0 10 true 1 9 true 2 8 true 3 7 true 4 6 true 5 5 false 6 4 true 7 3 true 8 2 true 9 1 true
[编辑] 另请参阅
(C++11) |
包装任何类型的可调用对象与指定的函数调用签名 原文: wraps callable object of any type with specified function call signature (类模板) |
(已弃用) |
创建适配器兼容功能的包装对象从一个指针到函数 原文: creates an adaptor-compatible function object wrapper from a pointer to function (函数模板) |
适配器兼容的封装为一个二元函数的指针 原文: adaptor-compatible wrapper for a pointer to binary function (类模板) | |
(已弃用) |
适配器兼容的一元函数的基类 原文: adaptor-compatible unary function base class (类模板) |