std::bind1st,std::bind2nd
来自 cppreference.com
< cpp | utility | functional
定义在头文件 <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 的第一个或第二个参数传递。
内容 |
[编辑] 参数
f | - | 指向要绑定参数的函数的指针 |
x | - | 要绑定到 f 的参数 |
[编辑] 返回值
一个包装 f 和 x 的函数对象。
[编辑] 异常
可能会引发实现定义的异常。
[编辑] 示例
运行此代码
#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) |
按顺序将可变数量的参数绑定到函数对象 (函数模板) |