命名空间
变体
操作

std::bind1st,std::bind2nd

来自 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*)
(直到 C++20*)
(直到 C++20*)
(直到 C++17*)(直到 C++17*)
bind1stbind2nd
(直到 C++17*)(直到 C++17*)

(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
 
定义在头文件 <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 <algorithm>
#include <cmath>
#include <cstddef>
#include <functional>
#include <iomanip>
#include <iostream>
#include <vector>
 
int main()
{
    std::vector<double> a = {0, 30, 45, 60, 90, 180};
    std::vector<double> r(a.size());
    const double pi = std::acos(-1); // since C++20 use std::numbers::pi
 
    std::transform(a.begin(), a.end(), r.begin(),
        std::bind1st(std::multiplies<double>(), pi / 180.0));
//  an equivalent lambda is: [pi](double a) { return a * pi / 180.0; });
 
    for (std::size_t n = 0; n < a.size(); ++n)
        std::cout << std::setw(3) << a[n] << "° = " << std::fixed << r[n]
                  << " rad\n" << std::defaultfloat;
}

输出

  0° = 0.000000 rad
 30° = 0.523599 rad
 45° = 0.785398 rad
 60° = 1.047198 rad
 90° = 1.570796 rad
180° = 3.141593 rad

[编辑] 另请参阅

(C++11 中已弃用)(C++17 中已删除)
保存二元函数及其其中一个参数的函数对象
(类模板) [编辑]
(C++20)(C++23)
按顺序将可变数量的参数绑定到函数对象
(函数模板) [编辑]