亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

.NET中怎么實現異步編程

發布時間:2021-08-10 15:12:44 來源:億速云 閱讀:159 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關.NET中怎么實現異步編程,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

第一種方法:BeginEnvoke EndEnvoke方法,屬于“等待”類。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;

namespace 異步調用實現方法匯總
{
  /// <summary>
  /// 異步調用方法總結:
  /// 1.BeginEnvoke EndEnvoke
  /// 當使用BeginInvoke異步調用方法時,如果方法未執行完,EndInvoke方法就會一直阻塞,直到被調用的方法執行完畢
  /// </summary>
  class Program
  {
    public delegate void PrintDelegate(string s);
    static void Main(string[] args)
    {
      PrintDelegate printDelegate = Print;
      Console.WriteLine("主線程");

      IAsyncResult result= printDelegate.BeginInvoke("Hello World.", null, null);
      Console.WriteLine("主線程繼續執行...");
      //當使用BeginInvoke異步調用方法時,如果方法未執行完,EndInvoke方法就會一直阻塞,直到被調用的方法執行完畢
      printDelegate.EndInvoke(result);

      Console.WriteLine("Press any key to continue...");
      Console.ReadKey(true);
    }

    public static void Print(string s)
    {
      Console.WriteLine("異步線程開始執行:"+s);
      Thread.Sleep(5000);
    }
  }
}

需要注意的地方,代碼中都有注明了,程序運行結果如下:

.NET中怎么實現異步編程

第二種方法:WaitOne。同樣屬于“等待”類。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;

namespace 異步調用實現方法匯總2
{
  /// <summary>
  /// 異步調用方法總結:
  /// 2.WaitOne
  /// 可以看到,與EndInvoke類似,只是用WaitOne函數代碼了EndInvoke而已。
  /// </summary>
  class Program
  {
    public delegate void PrintDelegate(string s);
    static void Main(string[] args)
    {
      PrintDelegate printDelegate = Print;
      Console.WriteLine("主線程");
      IAsyncResult result = printDelegate.BeginInvoke("Hello World.", null, null);
      Console.WriteLine("主線程繼續執行...");
      result.AsyncWaitHandle.WaitOne(-1, false);

      Console.WriteLine("Press any key to continue...");
      Console.ReadKey(true);
    }
    public static void Print(string s)
    {
      Console.WriteLine("異步線程開始執行:" + s);
      Thread.Sleep(5000);
    }
  }
}

需要注意的地方,代碼中都有注明了,程序運行結果如下:

.NET中怎么實現異步編程

第三種方法:輪詢。也是屬于“等待”類。

 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;

namespace 異步調用實現方法匯總3
{
  /// <summary>
  /// 異步調用方法總結:
  /// 3.輪詢
  /// 之前提到的兩種方法,只能等下異步方法執行完畢,
  /// 在完畢之前沒有任何提示信息,整個程序就像沒有響應一樣,用戶體驗不好,
  /// 可以通過檢查IasyncResult類型的IsCompleted屬性來檢查異步調用是否完成,
  /// 如果沒有完成,則可以適時地顯示一些提示信息
  /// </summary>
  class Program
  {
    public delegate void PrintDelegate(string s);
    static void Main(string[] args)
    {
      PrintDelegate printDelegate = Print;
      Console.WriteLine("主線程:"+Thread.CurrentThread.ManagedThreadId );
      IAsyncResult result = printDelegate.BeginInvoke("Hello world.", null, null);
      Console.WriteLine("主線程:" + Thread.CurrentThread.ManagedThreadId + ",繼續執行...");
      while (!result.IsCompleted)
      {
        Console.WriteLine(".");
        Thread.Sleep(500);
      }

      Console.WriteLine("主線程:" + Thread.CurrentThread.ManagedThreadId + " Press any key to continue...");
      Console.ReadKey(true);
    }
    public static void Print(string s)
    {
      Console.WriteLine("當前線程:" + Thread.CurrentThread.ManagedThreadId + s);
      Thread.Sleep(5000);
    }
  }
}

需要注意的地方,代碼中都有注明了,程序運行結果如下:

.NET中怎么實現異步編程

第四種方法:回調。當然屬于“回調”類。推薦!!!!

之前三種方法者在等待異步方法執行完畢后才能拿到執行的結果,期間主線程均處于等待狀態。回調和它們最大的區別是,在調用BeginInvoke時只要提供了回調方法,那么主線程就不必要再等待異步線程工作完畢,異步線程在工作結束后會主動調用我們提供的回調方法,并在回調方法中做相應的處理。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;

namespace 異步調用實現方法匯總4
{
  /// <summary>
  /// 異步調用方法總結:
  /// 4.回調
  /// 之前三種方法者在等待異步方法執行完畢后才能拿到執行的結果,期間主線程均處于等待狀態。
  /// 回調和它們最大的區別是,在調用BeginInvoke時只要提供了回調方法,那么主線程就不必要再等待異步線程工作完畢,
  /// 異步線程在工作結束后會主動調用我們提供的回調方法,并在回調方法中做相應的處理,例如顯示異步調用的結果。
  /// </summary>
  class Program
  {
    public delegate void PrintDelegate(string s);
    static void Main(string[] args)
    {
      PrintDelegate printDelegate = Print;
      Console.WriteLine("主線程.");
      printDelegate.BeginInvoke("Hello world.", PrintComeplete, printDelegate);
      Console.WriteLine("主線程繼續執行...");

      Console.WriteLine("Press any key to continue...");
      Console.ReadKey(true);
    }
    public static void Print(string s)
    { 
      Console.WriteLine("當前線程:"+s);
      Thread.Sleep(5000);
    }
    //回調方法要求
    //1.返回類型為void
    //2.只有一個參數IAsyncResult
    public static void PrintComeplete(IAsyncResult result)
    {
      (result.AsyncState as PrintDelegate).EndInvoke(result);
      Console.WriteLine("當前線程結束." + result.AsyncState.ToString());
    }
  }
}

需要注意的地方,代碼中都有注明了,程序運行結果如下:

.NET中怎么實現異步編程

通過EndInvoke方法得到同步函數的返回值。上面的同步方法返回值為void,我們給個例子:

using System.Diagnostics;
using System.Threading;
using System.Windows;

namespace TestDelegateWrapper
{
  /// <summary>
  /// Interaction logic for MainWindow.xaml
  /// </summary>
  public partial class MainWindow : Window
  {
    public MainWindow()
    {
      InitializeComponent();
    }

    private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
    {
      WrapperSyncMethodAsync("ABC");

      Trace.WriteLine("Main thread continue...");
    }

    private delegate string SyncMethod1Delegate(string str);
    
    private void WrapperSyncMethodAsync(string str)
    {
      SyncMethod1Delegate syncMethod1Delegate = SyncMethod1;
      syncMethod1Delegate.BeginInvoke(str, x =>
      {
        var result= syncMethod1Delegate.EndInvoke(x);

        // using the result to do something
        Trace.WriteLine(result);
      }, null);
    }

    private string SyncMethod1(string str)
    {
      Thread.Sleep(2000);
      return str;
    }
  }
}

上述就是小編為大家分享的.NET中怎么實現異步編程了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

隆化县| 黔南| 敦化市| 凤山市| 楚雄市| 陇西县| 广东省| 长宁区| 广河县| 通榆县| 东莞市| 民和| 微山县| 彩票| 海门市| 桓台县| 宝鸡市| 韩城市| 吴忠市| 榕江县| 府谷县| 喀什市| 盐边县| 休宁县| 达拉特旗| 东宁县| 天祝| 满城县| 类乌齐县| 诸城市| 庐江县| 壶关县| 玉田县| 甘洛县| 分宜县| 德安县| 石泉县| 黑山县| 吴川市| 海盐县| 慈利县|