首页 > 其他 > 详细

课堂笔记

时间:2014-06-21 09:52:54      阅读:334      评论:0      收藏:0      [点我收藏+]
//函数调用 bind&function 
void fun(){ CCLOG("Hello cocos"); return; } std::function<void()> f = std::bind(fun); fun();

-------------------

void fun1(){
    int number = 8;
   // auto fc = [&](int i){
   auto fc = [=](int i)mutable{
        number++;
        return i+number;
        
       
    };
    
    cout<<fc(6);
}

  

//获得MenuItemFont得文件名

void SceneB:: onSelectFile(Ref *obj){ MenuItemFont *it1 = (MenuItemFont *) obj; Label *lable = (Label*)it1->getLabel(); CCLOG("%s",lable->getString().c_str() ); }

  

std::function<void(std::string)> f;//->函数对象

  

 

 

 

 

 

 

 

 

 

 

 

 

 

 

课堂笔记,布布扣,bubuko.com

课堂笔记

原文:http://www.cnblogs.com/fulizhi/p/3794554.html

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