一、std::async和std::future的用法

std::async是一个函数模板,std::future是一个类模板

 #include <iostream>
#include <thread>
#include <future>
#include <Windows.h> using namespace std; int mythread()
{
cout << "my thread:" << std::this_thread::get_id() << " start" << endl;
int temp = ;
temp++;
Sleep();
cout << "my thread:" << std::this_thread::get_id() << " end" << endl;
return temp;
}
int main()
{
cout << "main thread:" << std::this_thread::get_id() << " start" << endl;
std::future<int> result = std::async(std::launch::async, mythread);
//std::async(mythread);相当于std::async(std::launch::async|std::lauch::deferred, mythread);
//自动创建一个线程开始执行线程入口函数,并返回一个std::future对象给result cout << result.get() << endl; //等待入口函数执行,直到拿到返回值,即temp
//result.wait(); //只等待入口函数执行完,但不返回结果
cout << "main thread:" << std::this_thread::get_id() << " end" << endl;
system("pause");
return ;
}

std::async(std::launch::async, mythread);如果std::async()的第一个参数改成std::lauch::deferred,那么线程不会被马上执行,而是延迟到std::future的wait()或者get()函数调用时才执行线程的入口函数。实际上,并没有创建
子线程,而只是在主函数中调用了入口函数。
二、std::packaged_task的用法
std::packaged_task是一个类模板,模板参数各种可调用对象,通过它把各种可调用对象包装起来,方便作为线程入口函数来调用
 #include <iostream>
#include <thread>
#include <future>
#include <Windows.h> using namespace std; int fun(int val)
{
cout << "my thread:" << std::this_thread::get_id() << " start" << endl;
val++;
cout << "my thread:" << std::this_thread::get_id() << " end" << endl;
return val;
}
int main()
{
cout << "main thread:" << std::this_thread::get_id() << " start" << endl;
std::packaged_task<int(int)> pack(fun);
thread t1(std::ref(pack), );
t1.join();
std::future<int> result = pack.get_future();
cout << result.get() << endl;
cout << "main thread:" << std::this_thread::get_id() << " end" << endl;
system("pause");
return ;
}

三、std::promise的用法

std::promise是一个类模板,能够在某个线程中给它赋值,然后可以在其他线程中,在将来的某个时刻,可以把这个值取出来。

 #include <iostream>
#include <thread>
#include <future>
#include <Windows.h> using namespace std; void mythread1(std::promise<int> &pro, int val)
{
cout << "my thread1:" << std::this_thread::get_id() << " start" << endl;
val++;
val--;
Sleep(); //假设运算了500毫秒
int result = val;
pro.set_value(val);//保存结果
cout << "my thread1:" << std::this_thread::get_id() << " end" << endl;
} void mythread2(std::future<int> &getful)
{
cout << "my thread2:" << std::this_thread::get_id() << " start" << endl;
auto getval = getful.get();
cout << getval << endl;
cout << "my thread2:" << std::this_thread::get_id() << " end" << endl;
}
int main()
{
cout << "main thread:" << std::this_thread::get_id() << " start" << endl;
std::promise<int> prom; //声明一个promise对象,保存类型为int
thread t1(mythread1, std::ref(prom), );
t1.join(); std::future<int> ful = prom.get_future(); //promise和future绑定,用于返回保存的结果 //在主线程获取结果
//auto result = ful.get(); //get()只能使用一次,如果主线程中使用了,t2就不能使用了
//cout << result << endl; //在线程t2中获取结果
thread t2(mythread2, std::ref(ful));
t2.join(); cout << "main thread:" << std::this_thread::get_id() << " end" << endl;
system("pause");
return ;
}

std::ref 用于包装按引用传递的值。

												

C++多线程基础学习笔记(七)的更多相关文章

  1. Java基础学习笔记七 Java基础语法之继承和抽象类

    继承 继承的概念 在现实生活中,继承一般指的是子女继承父辈的财产.在程序中,继承描述的是事物之间的所属关系,通过继承可以使多种事物之间形成一种关系体系. 例如公司中的研发部员工和维护部员工都属于员工, ...

  2. C++多线程基础学习笔记(四)

    一.创建多个子线程 前面三章讲的例子都是只有一个子线程和主线程,然而实际中有多个子线程.那么下面介绍如何创建多个子线程. #include <iostream> #include < ...

  3. C++多线程基础学习笔记(一)

    下面分三个方面多线程技术的必须掌握一些基本知识. 1.进程 2.线程 3.并发 (1)进程 一个可执行程序运行起来了,即为创建了一个进程.如在电脑上打开了word,就创建了一个word进程,打开QQ, ...

  4. loadrunner基础学习笔记七-面向目标场景

    部署应用程序之前,要执行验收测试以确保系统能够承担预期的实际工作量. 可以为想要生成的每秒点击次数,每秒事务数或事务响应时间设置目标 loadrunner将使用面向目标的场景自动生成所需的目标,当应用 ...

  5. JDBC一(web基础学习笔记七)

    一.JDBC Java数据库的连接技术(Java DataBase Connectivity),能实现Java程序以各种数据库的访问 由一组使用Java语言编写的类和接口(JDBC API)组成,它j ...

  6. C++多线程基础学习笔记(十)

    一.Windows临界区的基本用法 CRITICAL_SECTION my_winsc;              //定义一个Windows的临界区,相当于一个mutex变量 InitializeC ...

  7. C++多线程基础学习笔记(九)

    一.std::atomic续谈 上一章说到std::atomic是针对一个变量的,这里补充一下针对的变量操作一般是++,+=,--,&=等等运算 .以下这种不可取:a=a+1; 二.std:: ...

  8. C++多线程基础学习笔记(八)

    shared_futrue和futrue_status的用法 shared_futrue是一个类模板,类似于futrue,不同的是它的成员函数get()可以使用多次,因为是复制数据,而futrue的g ...

  9. C++多线程基础学习笔记(六)

    condition_variable.wait.notifiy_one.notify_all的使用方式 condition_variable:条件变量 wait:等待被唤醒 notify_one:随机 ...

随机推荐

  1. 关于博主&&联系博主

    关于我自己 天朝一名普通理科男高中生,现正读高二. 一位正在求学之路上奋斗的蒟蒻.很爱听歌,欧美为主,霉霉死粉.交际方面比较弱. 常用编辑器为DEV-C++,编译器为gcc,常用OJ是洛谷 基本熟练使 ...

  2. 解决xshell无法连接virtualbox中的虚拟机(Ubuntu18.04)的问题

    遇到这个问题第一反应是是否安装相应的组件: sudo apt-get install openssh-server 开启防火墙端口 firewall-cmd --zone=/tcp --permane ...

  3. Codeforces 1167 F Scalar Queries 计算贡献+树状数组

    题意 给一个数列\(a\),定义\(f(l,r)\)为\(b_1, b_2, \dots, b_{r - l + 1}\),\(b_i = a_{l - 1 + i}\),将\(b\)排序,\(f(l ...

  4. Dungeon Master (POJ - 2251)(BFS)

    转载请注明出处: 作者:Mercury_Lc 地址:https://blog.csdn.net/Mercury_Lc/article/details/82693907 题目链接 题解:三维的bfs,一 ...

  5. C++入门经典-例8.2-构造函数的访问顺序

    1:父类和子类中都有构造函数和析构函数,那么子类对象在创建时是父类先进行构造还是子类先进行构造?同样,在子类对象释放时,是父类先进行释放,还是子类先进行释放?这都是有先后顺序的.答案是当从父类派生一个 ...

  6. State Threads之Co-routine的调度

    1. 相关结构体 1.1 _st_epoll_data static struct _st_epolldata { _epoll_fd_data_t *fd_data; /* 调用 epoll_wai ...

  7. linux搭建ftp配置文件

    # Example config file /etc/vsftpd/vsftpd.conf## The default compiled in settings are fairly paranoid ...

  8. 对opencv读取的图片进行像素调整(1080, 1920) 1.cv2.VideoCapture(构造图片读取) 2.cv2.nameWindow(构建视频显示的窗口) 3.cv2.setWindowProperty(设置图片窗口的像素) 4.video_capture(对图片像素进行设置)

    1. cv2.VideoCapture(0) #构建视频抓捕器 参数说明:0表示需要启动的摄像头,这里也可以写视频的路径 2. cv2.nameWindow(name, cv2.WINDOW_NORM ...

  9. [转]springboot启动原理

    参考文章:https://www.jianshu.com/p/ef6f0c0de38f

  10. Win10删除文件显示删除确认对话框

    1.右键单击“回收站”图标:2.在弹出属性窗口中,点击“属性”选项:3.在“回收站”窗口中,在选项“显示删除确认对话框”前面打钩,并单击“确定”按钮: