首頁 >後端開發 >C#.Net教程 >將參數傳遞給線程的 C# 程序

將參數傳遞給線程的 C# 程序

WBOY
WBOY轉載
2023-08-27 10:25:09902瀏覽

将参数传递给线程的 C# 程序

要使用線程,請在程式碼中新增以下命名空間-

using System.Threading;

首先,您需要在C# 中建立一個新線程-

Thread thread = new Thread(threadDemo);

上面,threadDemo是我們的執行緒函數。

現在將參數傳遞給執行緒-

thread.Start(str);

上面設定的參數是-

String str = "Hello World!";

範例

讓我們看看在C# 中將參數傳遞給線程的完整程式碼。

即時示範 p>

using System;
using System.Threading;
namespace Sample {
   class Demo {
      static void Main(string[] args) {
         String str = "Hello World!";
         // new thread
         Thread thread = new Thread(threadDemo);
         // passing parameter
         thread.Start(str);
      }
      static void threadDemo(object str) {
         Console.WriteLine("Value passed to the thread: "+str);
      }
   }
}

輸出

Value passed to the thread: Hello World!

以上是將參數傳遞給線程的 C# 程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除