• <small id='lRQrb'></small><noframes id='lRQrb'>

      <tfoot id='lRQrb'></tfoot>

      <legend id='lRQrb'><style id='lRQrb'><dir id='lRQrb'><q id='lRQrb'></q></dir></style></legend>
    1. <i id='lRQrb'><tr id='lRQrb'><dt id='lRQrb'><q id='lRQrb'><span id='lRQrb'><b id='lRQrb'><form id='lRQrb'><ins id='lRQrb'></ins><ul id='lRQrb'></ul><sub id='lRQrb'></sub></form><legend id='lRQrb'></legend><bdo id='lRQrb'><pre id='lRQrb'><center id='lRQrb'></center></pre></bdo></b><th id='lRQrb'></th></span></q></dt></tr></i><div id='lRQrb'><tfoot id='lRQrb'></tfoot><dl id='lRQrb'><fieldset id='lRQrb'></fieldset></dl></div>
        <bdo id='lRQrb'></bdo><ul id='lRQrb'></ul>

      1. Func&lt;T&gt;.BeginInvoke 使用线程池吗?

        时间:2023-11-11

          • <i id='T3EQ9'><tr id='T3EQ9'><dt id='T3EQ9'><q id='T3EQ9'><span id='T3EQ9'><b id='T3EQ9'><form id='T3EQ9'><ins id='T3EQ9'></ins><ul id='T3EQ9'></ul><sub id='T3EQ9'></sub></form><legend id='T3EQ9'></legend><bdo id='T3EQ9'><pre id='T3EQ9'><center id='T3EQ9'></center></pre></bdo></b><th id='T3EQ9'></th></span></q></dt></tr></i><div id='T3EQ9'><tfoot id='T3EQ9'></tfoot><dl id='T3EQ9'><fieldset id='T3EQ9'></fieldset></dl></div>
            1. <tfoot id='T3EQ9'></tfoot>
                <tbody id='T3EQ9'></tbody>
              • <bdo id='T3EQ9'></bdo><ul id='T3EQ9'></ul>
                <legend id='T3EQ9'><style id='T3EQ9'><dir id='T3EQ9'><q id='T3EQ9'></q></dir></style></legend>
              • <small id='T3EQ9'></small><noframes id='T3EQ9'>

                  本文介绍了Func&lt;T&gt;.BeginInvoke 使用线程池吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  当您在 C# 中调用 Func 委托(或相关的 Action 委托)上的 BeginInvoke 方法时,运行时是使用 ThreadPool 还是生成新线程?

                  When you call the BeginInvoke method on a Func delegates (or the Action delegates for that matter) in C#, does the runtime use the ThreadPool or spawn a new thread?

                  我几乎可以肯定它会使用 ThreadPool,因为这是合乎逻辑的做法,但如果有人能证实这一点,我将不胜感激.

                  I'm almost certain that it'll use the ThreadPool as that'd be the logical thing to do but would appreciate it if someone could confirm this.

                  谢谢,

                  推荐答案

                  肯定是用线程池的.

                  如果我能找到文档,我会感到震惊,请注意... 这篇 MSDN 文章 表明您指定的任何 回调 都将在线程池线程上执行...

                  I'm blowed if I can find that documented anyway, mind you... this MSDN article indicates that any callback you specify will be executed on a thread-pool thread...

                  这里有一些代码可以确认它 - 但当然这并不能确认它保证会以这种方式发生......

                  Here's some code to confirm it - but of course that doesn't confirm that it's guaranteed to happen that way...

                  using System;
                  using System.Threading;
                  
                  public class Test
                  {
                      static void Main()
                      {
                          Action x = () => 
                              Console.WriteLine(Thread.CurrentThread.IsThreadPoolThread);
                  
                          x(); // Synchronous; prints False
                          x.BeginInvoke(null, null); // On the thread-pool thread; prints True
                          Thread.Sleep(500); // Let the previous call finish
                      }
                  }
                  

                  如下面的 Jeff 所链接,这篇 MSDN 文章 证实它:

                  As linked by Jeff below, this MSDN article confirms it:

                  如果调用了 BeginInvoke 方法,公共语言运行时 (CLR)将请求排队并返回立即给来电者.目标方法在 a 上异步调用线程池中的线程.

                  If the BeginInvoke method is called, the common language runtime (CLR) queues the request and returns immediately to the caller. The target method is called asynchronously on a thread from the thread pool.

                  这篇关于Func&lt;T&gt;.BeginInvoke 使用线程池吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:“委托减法有不可预知的结果"在 ReSharper/C# 中? 下一篇:如何从 lambda 表达式中获取引用实例的实例

                  相关文章

                  <i id='Z2G1t'><tr id='Z2G1t'><dt id='Z2G1t'><q id='Z2G1t'><span id='Z2G1t'><b id='Z2G1t'><form id='Z2G1t'><ins id='Z2G1t'></ins><ul id='Z2G1t'></ul><sub id='Z2G1t'></sub></form><legend id='Z2G1t'></legend><bdo id='Z2G1t'><pre id='Z2G1t'><center id='Z2G1t'></center></pre></bdo></b><th id='Z2G1t'></th></span></q></dt></tr></i><div id='Z2G1t'><tfoot id='Z2G1t'></tfoot><dl id='Z2G1t'><fieldset id='Z2G1t'></fieldset></dl></div>
                  <legend id='Z2G1t'><style id='Z2G1t'><dir id='Z2G1t'><q id='Z2G1t'></q></dir></style></legend>

                        <bdo id='Z2G1t'></bdo><ul id='Z2G1t'></ul>

                      <tfoot id='Z2G1t'></tfoot>
                    1. <small id='Z2G1t'></small><noframes id='Z2G1t'>