码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 11 bind

时间:2014-12-23 12:09:19      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream>
#include <functional>

using namespace std;

int add(int a, int b) {
    return a + b;
}

int main() {
    
    function<int (int, int)> f = add;
    
    cout<<f(100, 100)<<endl;
    
    function<int (int)> fsingle = bind(add, 123, placeholders::_1);
    
    cout<<fsingle(111)<<endl;
    
    return 0;
}

跟javascript,python这类动态语言接近了

C++ 11 bind

标签:

原文地址:http://www.cnblogs.com/lailailai/p/4179614.html

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