std::function赋值的几种方法

时间:2014-06-09 17:41:43   收藏:0   阅读:2139

定义:

#include <functional>

std::function<void(const QString&)> myPrintFunction;

 

函数指针

void directPrint(const QString &msg)
{
    qDebug()<<"direct print:"<<msg;
}

myPrintFunction = directPrint;

 

lambda

myPrintFunction = [](const QString &s)
{
    qDebug()<<"lambda print:"<<s;
};

std::bind

Screen* screen = new Screen();
PrintFunction= std::bind(&Screen::print, screen, std::placeholders::_1);

std::function赋值的几种方法,布布扣,bubuko.com

原文:http://www.cnblogs.com/danju/p/3777439.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!