c# – 了解ThreadBeginInvoke? [初学者]

c# – 了解ThreadBeginInvoke? [初学者],第1张

概述考虑代码: class Work{ public void DoStuff(string s) { Console.WriteLine(s); // .. whatever }}class Master{ private readonly Work work = new Work(); public void Exe 考虑代码:
class Work{    public voID DoStuff(string s)    {        Console.Writeline(s);        // .. whatever    }}class Master{    private Readonly Work work = new Work();    public voID Execute()    {        string hello = "hello";        // (1) is this an ugly Hack ?        var thread1 = new Thread(new ParameterizedThreadStart(o => this.work.DoStuff((string)o)));                   thread1.Start(hello);        thread1.Join();        // (2) is this similar to the one above?        new Action<string>(s => this.work.DoStuff(s)).BeginInvoke(hello,null,null);    }}

(1)在一个单独的线程中容易地开始一些工作的可接受的方式?如果不是更好的选择将不胜感激.

(2)做同样的事情?我想我问的是如果一个新的线程启动,或..

希望你能帮助初学者更好的理解:)

/莫伯格

解决方法 (1)不是一个丑陋的黑客,但是现在这不是“线程”. Thread Pool,BackgroundWorker的 Thread Pool线程和.NET 4.0中的 Task Parallel Library线程是可以走的路.

(2)是好的,但是你需要将BeginInvoke与EndInvoke配对.分配新的Action< string>到一个变量,然后在主线程或完成方法(BeginInvoke的第二个参数)中手动调用x.EndInvoke().参见here作为体面的参考.

编辑:这里的方式(2)应该看起来相当于(1):

var thread2 = new Action<string>(this.work.DoStuff);    var result = thread2.BeginInvoke(hello,null);    thread2.EndInvoke(result);
总结

以上是内存溢出为你收集整理的c# – 了解Thread / BeginInvoke? [初学者]全部内容,希望文章能够帮你解决c# – 了解Thread / BeginInvoke? [初学者]所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1236840.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存