首页 > 编程语言 > 详细

C++ bind 和 ref

时间:2017-11-14 21:45:03      阅读:230      评论:0      收藏:0      [点我收藏+]

#include <functional>
#include <iostream>
 
void f(int& n1, int& n2, const int& n3)
{
    std::cout << "In function: " << n1 << ‘ ‘ << n2 << ‘ ‘ << n3 << ‘\n‘;
    ++n1; // increments the copy of n1 stored in the function object
    ++n2; // increments the main()‘s n2
    // ++n3; // compile error
}
 
int main()
{
    int n1 = 1, n2 = 2, n3 = 3;
    std::function<void()> bound_f = std::bind(f, n1, std::ref(n2), std::cref(n3));
    n1 = 10;
    n2 = 11;
    n3 = 12;
    std::cout << "Before function: " << n1 << ‘ ‘ << n2 << ‘ ‘ << n3 << ‘\n‘;
    bound_f();
    std::cout << "After function: " << n1 << ‘ ‘ << n2 << ‘ ‘ << n3 << ‘\n‘;
}

Output:
Before function: 10 11 12
In function: 1 11 12
After function: 10 12 12

在上面的例子中,如果不加ref,bind引用的是值的拷贝,而不是值的传递,所以当我们需要传递值的话,加上ref或cref就可以

C++ bind 和 ref

原文:http://www.cnblogs.com/daibigmonster/p/7834771.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!