C++ 参考手册

位置:首页 > C++ 参考手册 >工具库 >函数对象 > std::bind1st, std::bind2nd

定义于头文件 <functional>
template< class F, class T >
std::binder1st<F> bind1st( const F& f, const T& x );
(1) (C++11 中弃用)
(C++17 中移除)
template< class F, class T >
std::binder2nd<F> bind2nd( const F& f, const T& x );
(2) (C++11 中弃用)
(C++17 中移除)

绑定给定参数 x 到给定二元函数对象 f 的第一或第二参变量。即,在产生的包装器内存储 x ,若调用它,则将 x 传递为 f 的第一或第二参数。

1) 绑定 f 的第一参数到 x 。等效地调用 std::binder1st<F>(f, typename F::first_argument_type(x))

2) 绑定 f 的第二参数到 x 。等效地调用 std::binder2nd<F>(f, typename F::second_argument_type(x))

参数

f - 指向要绑定参数到的函数的指针
x - 绑定到 f 的参数

返回值

包装 fx 的函数对象。

异常

(无)

示例

#include <iostream>
#include <algorithm>
#include <functional>
#include <cmath>
#include <vector>
 
int main()
{
    std::vector<double> a= {0, 30, 45, 60, 90, 180};
    std::vector<double> r(a.size());
    double pi = std::acos(-1);
 
    std::transform(a.begin(), a.end(), r.begin(),
        std::bind1st(std::multiplies<double>(), pi / 180.));
// 等价 lambda : [pi](double a){ return a*pi/180.; });
 
    for(size_t n = 0; n < a.size(); ++n)
        std::cout << a[n] << " deg = " << r[n] << " rad\n";
}

输出:

0 deg = 0 rad
30 deg = 0.523599 rad
45 deg = 0.785398 rad
60 deg = 1.0472 rad
90 deg = 1.5708 rad
180 deg = 3.14159 rad

参阅

(C++11 中弃用)(C++17 中移除)
持有一个二元函数及其实参之一的函数对象
(类模板)