码迷,mamicode.com
首页 > 其他好文 > 详细

bind

时间:2020-04-07 21:00:27      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:cout   16px   生成   boto   family   ros   传递   str   spl   

bind()是一个函数模板,它的原理是根据已有的模板,生成一个函数,但是由于bind()不知道生成的函数执行的时候,传递进来的参数是否还有效。所以它选择参数值传递而不是引用传递。如果想引用传递,std::ref和std::cref就派上用场了。

#include <functional>
#include <iostream>
using namespace std;

double my_div(double x, double y)
{
cout << x/y << endl;
return x/y;
}

int main()
{
int a = 10, b = 2;
using namespace std::placeholders;
auto f1 = bind(my_div, _1, _2);
f1(10, 2);
auto f2 = bind(my_div, _1, 2);
f2(10);
auto f3 = bind(my_div, _2, _1);
f3(10, 2);
//auto f4 = bind(my_div, 10, _2);//编译错误
//f4(2);
auto f5 = bind(my_div, std::ref(a), std::ref(b));
f5();
}

bind

标签:cout   16px   生成   boto   family   ros   传递   str   spl   

原文地址:https://www.cnblogs.com/xpylovely/p/12655338.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!