本文介绍了我怎样才能使用线程?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想编写程序

一个函数得到数字

另一个计算平均数的函数

它应该并行完成并使用线程



我尝试过:



i want to write program
that one function get numbers
another function counting avg of numbers
it should be done parallel and used threads

What I have tried:

i want to write program
that one function get numbers
another function counting avg of numbers
it should be done parallel and used threads

推荐答案



#include <cstdlib>
#include <iostream>
#include <window.h>
#include <thread>


using namespace std;

int main(int argc, char *argv[])
{
    while(1);
    return 0;
}
int a,flag1=0,flag2=0;
int f1(void *)
{
    while(1)
    {
            flag2=0;
            cin>>a;
            flag1=1;
            while (flag2==0)
            sleep(100);
            flag1=0;
     }
}
int f2(void *)
{
    int sum=0,count=0;
    while(!flag1==0)
    {
        sleep(100);
        sum+=a;
        count++;
        cout<<sum/count;
        flag2=1;
     }
}


这篇关于我怎样才能使用线程?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-31 22:30