博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++多线程
阅读量:5064 次
发布时间:2019-06-12

本文共 2106 字,大约阅读时间需要 7 分钟。



1.多线程

多线程案例:

#include <iostream>

#include <thread>

#include <string>

#include<windows.h>

 

using namespace std;

 

void run(int num)

{

    Sleep(1000);

    std::cout << "你好天朝" << num << endl;

}

 

void main()

{

    thread *p[10];

    for (int i = 0; i < 10;i++)

    {

        p[i] = new thread(run,i);//循环创建线程

        //p[i]->join();//等待,相当于阻塞的状态

        p[i]->detach();//脱离当前主线程自由运行。乱序。也就是说每一个线程的运行是随机的。是并发运行。

    }

    cin.get();

}

执行结果是:

2.线程案例2

#include <iostream>

#include <thread>

#include <string>

#include<windows.h>

 

using namespace std;

 

void helloworld()

{

    std::cout << "你好天朝" << endl;

}

 

void helloworldA()

{

    std::cout << "你好天朝A" << endl;

}

 

void helloworldB()

{

    std::cout << "你好天朝B" << endl;

}

//通过以下这样的方式实现的线程永远是顺序的

void main()

{

    std::thread t1(helloworld);//线程顺序运行

    std::thread t2(helloworldA);

    std::thread t3(helloworldB);

    cin.get();

}

3.线程加锁和线程解锁

#include <iostream>

#include <thread>

#include <string>

#include<windows.h>

#include<mutex>

using namespace std;

//两个线程并行訪问一个变量

int g_num = 20;//找到或者找不到的标识

mutex g_mutex;

void goA(int num)

{

    //你訪问的变量,在你訪问期间。别人訪问不了,

    //这样的情况明显能够看到自己被运行的次数多了

    g_mutex.lock();

    for (int i = 0; i < 15; i++)

    {

        Sleep(300);

        g_num = 10;

        std::cout << "线程" << num << "   " << g_num << endl;

    }

    g_mutex.unlock();

}

void goB(int num)

{

    for (int i = 0; i < 15; i++)

    {

        Sleep(500);

        g_num = 11;

        std::cout << "线程" << num << "   " << g_num << endl;

    }

}

void main()

{

    thread t1(goA,1);

    thread t2(goB, 2);

    t1.join();

    t2.join();

    std::cin.get();

}

执行结果:

4.线程之间通信以及锁定

案例:

#include <iostream>

#include <thread>

#include <string>

#include<windows.h>

 

using namespace std;

 

//两个线程并行訪问一个变量

//找到或者找不到的标识

int g_num = 20;

 

void goA(int num)

{

    for (int i = 0; i < 15;i++)

    {

        Sleep(1000);

        if (i == 6)

        {

            g_num = 5;

        }

        if (g_num == 5)

        {

            std::cout << "线程" << num << "结束\n";

            return;

        }

        std::cout << "线程" << num << "  " << g_num << endl;

    }

}

 

void goB(int num)

{

    for (int i = 0; i < 150; i++)

    {

        Sleep(1000);

        if (g_num == 5)

        {

            std::cout << "线程" << num << "结束   \n";

            return;

        }

        std::cout << "线程" << num << "   " << g_num << endl;

    }

}

 

void main()

{

    thread t1(goA, 1);

    thread t2(goB, 2);

    t1.join();

    t2.join();

 

    std::cin.get();

}

 

转载于:https://www.cnblogs.com/mengfanrong/p/5033913.html

你可能感兴趣的文章
WordPress时间日期函数常用代码
查看>>
2010502260926_《avolon》
查看>>
C#可空类型(Nullable Types)
查看>>
编写并运行windows服务
查看>>
最简单的设计模式
查看>>
History(历史)命令用法 15 例
查看>>
Spring——原理解析-利用反射和注解模拟IoC的自动装配
查看>>
线程池
查看>>
html table导出到Excel中,不走后台,js完成
查看>>
tf.contrib.slim add_arg_scope
查看>>
[USACO06NOV]玉米田Corn Fields(动态规划,状态压缩)
查看>>
搭建SpringMVC+Hibernate4+Spring3+Ajax+Maven项目(二)
查看>>
WCF中双工协议
查看>>
页面按钮埋点+跟踪location.search
查看>>
近期常用的一些连接
查看>>
第二次冲刺第六天
查看>>
火车运煤问题
查看>>
Fiddler插件开发 - 实现网站离线浏览功能
查看>>
日期函数的格式
查看>>
12天学好C语言——记录我的C语言学习之路(Day 12)
查看>>