首页 > 作文

C# 多线程学习之基础入门

更新时间:2023-04-04 02:39:00 阅读: 评论:0

目录
同步方式异步多线程方式异步多线程优化异步回调异步信号量异步多线程返回值异步多线程返回值回调

线程(英语:thread)是操作系统能够进行运算调度的最小单位。它被包含在进程之中,是进程中的实际运作单位。一条线程指的是进程中一个单一顺序的控制流,一个进程中可以并发多个线程,每条线程并行执行不同的任务。进程是资源分配的基本单位。所有与该进程有关的资源,都被记录在进程控制块pcb中。以表示该进程拥有这些资源或正在使用它们。本文以一些简单的小例子,简述如何将程序由同步方式,一步一步演变成异步多线程方式,仅供学习分享使用,如有不足之处,还请指正。

同步方式

业务场景:用户点击一个按钮,然后做一个耗时的业务。同步方式代码如下所示:

private void btnsync_click(object nder, eventargs e){    stopwatch watch = stopwatch.startnew();    watch.start();    console.writeline("************btnsync_click同步方法 开始,线程id= {0}************", thread.currentthread.managedthreadid);    for (int i = 0; i < 5; i++)    {        string name = string.format("{0}_{1}", "btnsync_click", i);        this.dosomethinglong(name);    }    console.writeline("************btnsync_click同步方法 结束,线程id= {0}************", thread.currentthread.managedthreadid);    watch.stop();    console.writeline("************总耗时= {0}************", watch.elapd.totalconds.tostring("0.00"));}/// <summary>/// 模拟做一些长时间的工作/// </summary>/// <param name="name"></param>private void dosomethinglong(string name){    console.writeline("************dosomethinglong 开始 name= {0} 线程id= {1} 时间 = {2}************", name, thread.currentthread.managedthreadid, datetime.now.tostring("hh:mm:ss.fff"));    //cpu计算累加和    long rest = 0;    for (int i = 0; i < 1000000000; i++)    {        rest += i;    }    console.writeline("************dosomethinglong 结束 name= {0} 线程id= {1} 时间 = {2} 结果={3}************", name, thread.currentthread.managedthreadid, datetime.now.tostring("hh:mm:ss.fff"), rest);}

同步方式输出结果,如下所示:

通过对以上示例进行分析,得出结论如下:

同步方式按顺序依次执行。同步方式业务和ui采用采用同一线程,都是主线程。同步方式如果执行操作比较耗时,前端ui会卡住,无法响应用户请求。同步方式比较耗时【本示例9.32秒】

异步多线程方式

如何优化同步方式存在的问题呢?答案是由同步方式改为异步异步多线程方式。代码如下所示:

private void btnasync_click(object nder, eventargs e){    stopwatch watch = stopwatch.startnew();    watch.start();    console.writeline("************btnasync_click异步方法 开始,线程id= {0}************", thread.currentthread.managedthreadid);    action<strin经典英语美文g> action = new action<string>(dosomethinglong);    for (int i = 0; i < 5; i++)    {        string name = string.format("{0}_{1}", "btnasync_click", i);        action.begininvoke(name,null,null);    }    console.writeline("************btnasync_click异步方法 结束,线程id= {0}************", thread.currentthread.managedthreadid);    watch.stop();    console.writeline("************总耗时= {0}************", watch.elapd.totalconds.tostring("0.00"));}

异步方式出结果,如下所示:

通过对以上示例进行分析,得出结论如下:

异步方式不是顺序执行,即具有无序性。异步方式采用多线程方式,和ui不是同一个线程,所以前端ui不会卡住。异步多线程方式执行时间短,响应速度快。

通过观察任务管理器,发现同步方式比较耗时间,异步方式比较耗资源【本例是cpu密集型操作】,属于以资源换性能。同步方式和异步方式的cpu利用率,如下图所示:

异步多线程优化

通过上述例子,发现由于采用异步的原因,线程还未结束,但是排在后面的语句就先执行,所以统计的程序执行总耗时为0秒。为了优化此问题,采用async与await组合方式执行,代码如下所示:

private async void btnasync2_click(object nder, eventargs e){    stopwatch watch = stopwatch.startnew();    watch.start();    console.writeline("************btnasync_click2异步方法 开始,线程id= {0}************", thread.currentthread.managedthreadid);    await doasync();    console.writeline("************btnasync_click2异步方法 结束,线程id= {0}************", thread.currentthread.managedthreadid);    watch.stop();    console.writeline("************总耗时= {0}************", watch.elapd.totalconds.tostring("0.00"));}/// <summary>/// 异步方法/// </summary>/// <returns></returns>private async task doasync() {    action<string> action = new action<string>(dosomethinglong);    list<iasyncresult> results = new list<iasyncresult>();    for (int i = 0; i < 5; i++)    {        string name = string.format("{0}_{1}", "btnasync_click", i);        iasyncresult result = action.begininvoke(name, null, null);        results.add(result);    }    await task.run(()=> {        while (true)        {            for (int i = 0; i < results.count; i++) {                var result = results[i];                if (result.iscompleted) {                    results.remove(result);                    break;                }            }            if (results.count < 1) {                break;            }            thread.sleep(200);        }    });}

经过优化,执行结果如下所示:

通过异步多线程优化后的执行结果,进行分析后得出的结论如下:

action的begininvoke,会返回iasyncresult接口,通过接口可以判断是否完成。如果有多个action的多线程调艺考生文化课复习用,可以通过list方式进行。async与await组合,可以实现异步调用,防止线程阻塞。

通过以上方式,采用异步多线程的方式,共耗时3.26秒,比同步方式的9.32秒,提高了2.85倍,并非线性增加。且每次执行的总耗时会上下浮动,并非固定值。

异步回调

上述async与await组合,是一种实现异步调用的方式,其实action本身也具有回调函数【asynccallback】,通过回调函数一样可以实现对应功能。具体如下所示:

/// <summary>/// 异步回调/// </summary>/// <param name="nder"></param>/// <param name="e"></param>private void btnasync3_click(object nder, eventargs e){    stopwatch watch = stopwatch.startnew();    watch.start();    console.writeline("************btnasync_click3异步方法 开始,线程id= {0}************", thread.currentthread.managedthreadid);    action action = doasync3;    asynccallback asynccallback = new asynccallback((ar) =>    {        if (ar.iscompleted)        {            console.writeline("************btnasync_click3异步方法 结束,线程id= {0}************", thread.currentthread.managedthreadid);            watch.stop();            console.writeline("************总耗时= {0}************", watch.elapd.totalconds.tostring("0.00"));        }    });    action.begininvoke(asynccallback, null);}private void doasync3(){    action<string> action = new action<string>(dosomethinglong);    list<iasyncresult> results = new list<iasyncresult>();    for (int i = 0; i < 5; i++)    {        string name = string.format("{0}_{1}", "btnasync_click3", i);        iasyncresult result = action.begininvoke(name, null, null);        results.add(result);    }    while (true)    {        for (int i = 0; i < results.count; i++)        {            var result = results[i];            if (result.iscompleted)            {                results.remove(result);                break;            }        }        if (results.count < 1)        {            break;        }        thread.sleep(200);    }}

异步回调执行示例,如下所示:

通过对异步回调方式执行结果进行分析,结论如下所示:

通过观察线程id可以发现,由于对循环计算的功能进行了封装,为一个独立的函数,所以在action通过begininvoke发起时,又是一个新的线程。通过async和await在通过task.run方式返回时,也会重新生成新的线程。通过回调函数,可以保证异步线程的执行顺序。通过thread.sleep(200)的方式进行等待,会有一定时间范围延迟。

异步信号量

信号量方式是通过begininvoke返回值iasyncresult中的异步等待asyncwaithandle触发信号waitone,可以实现信号的实时响应,具体代码如下:

private void btnasync4_click(object nder, eventargs e){    stopwatch wa人际关系理论tch = stopwatch.startnew();    watch.start();    console.writeline("************btnasync_click4异步方法 开始,线程id= {0}************", thread.currentthread.managedthreadid);    action action = doasync3;    var asyncresult = action.begininvoke(null, null);    //此处中间可以做其他的工作,然后在最后等待线程的完成    asyncresult.asyncwaithandle.waitone();    console.writeline("************btnasync_click4异步方法 结束,线程id= {0}************", thread.currentthread.managedthreadid);    watch.stop();    console.writeline("************总耗时= {0}************", watch.elapd.totalconds.tostring("0.00"));}

信号量示例截图如下所示:

通过对异步信号量方式的测试结果进行分析,得出结论如下:

信号量方式会造成线程的阻塞,且会造成前端界面卡死。信号量方式lol卡牌大师适用于异步方法和等待完成之间还有其他工作需要处理的情况。waitone可以设置超时时间【最多可等待时间】。

异步多线程返回值

上述示例的委托都是无返回值类型的,那么对于有返回值的函数,如何获取呢?答案就是采用func。示例如下所示:

private void btnasync5_click(object nder, eventargs e){    stopwatch watch = stopwatch.startnew();    watch.start();    console.writeline("************btnasync5_click异步方法 开始,线程id= {0}************", thread.currentthread.managedthreadid);    string name = string.format("{0}_{1}", "btnasync_click5", 0);    func<string, int> func = new func<string, int>(dosomethinglongandreturn);    iasyncresult asyncresult = func.begininvoke(name, null, null);    //此处中间可以做其他的工作,然后在最后等待线程的完成    int result = func.endinvoke(asyncresult);    console.writeline("************btnasync5_click异步方法 结束,线程id= {0},返回值={1}************", thread.currentthread.managedthreadid,result);    watch.stop();    console.writeline("************总耗时= {0}************", watch.elapd.totalconds.tostring("0.00"));}private int dosomethinglongandreturn(string name){    console.writeline("************dosomethinglong 开始 name= {0} 线程id= {1} 时间 = {2}************", name, thread.currentthread.managedthreadid, datetime.now.tostring("hh:mm:ss.fff"));    //cpu计算累加和    long rest = 0;    for (int i = 0; i < 1000000000; i++)    {        rest += i;    }    console.writeline("************dosomethinglong 结束 name= {0} 线程id= {1} 时间 = {2} 结果={3}************", name, thread.currentthread.managedthreadid, datetime.now.tostring("hh:mm:ss.fff"), rest);    return datetime.now.day;}

采用func方式的endinvoke,可以获取返回值,示例如下:

通过对func方式的endinvoke方法的示例进行分析,得出结论如下所示:

在主线程中调用endinvoke,会进行阻塞,前端页面卡死。func的返回值是泛型类型,可以返回任意类型的值。

异步多线程返回值回调

为了解决以上获取返回值时,前端页面卡死的问题,可以采用回调函数进行解决,如下所示:

private void btnasync6_click(object nder, eventargs e){    stopwatch watch = stopwatch.startnew();    watch.start();    console.writeline("************btnasync6_click异步方法 开始,线程id= {0}************", thread.currentthread.managedthreadid);    string name健康平安 = string.format("{0}_{1}", "btnasync_click6", 0);    func<string, int> func = new func<string, int>(dosomethinglongandreturn);    asynccallback callback = new asynccallback((asyncresult) =>    {        int result = func.endinvoke(asyncresult);        console.writeline("************btnasync6_click异步方法 结束,线程id= {0},返回值={1}************", thread.currentthread.managedthreadid, result);        watch.stop();        console.writeline("************总耗时= {0}************", watch.elapd.totalconds.tostring("0.00"));    });    func.begininvoke(name, callback, null);}

采用回调方式,示例截图如下:

通过对回调方式的示例进行分析,得出结论如下:

异步回调函数中调用endinvoke,可以直接返回,不再阻塞。异步回调方式,前端ui线程不再卡住。

以上就是c# 多线程学习之基础入门的详细内容,更多关于c# 多线程的资料请关注www.887551.com其它相关文章!

本文发布于:2023-04-04 02:38:59,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/b666a4ea768cd1ca9e0f6b18ad0c26c9.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:C# 多线程学习之基础入门.doc

本文 PDF 下载地址:C# 多线程学习之基础入门.pdf

标签:线程   方式   多线程   所示
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图