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

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

WBOY
發布: 2023-08-27 10:25:09
轉載
911 人瀏覽過

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

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

using System.Threading;
登入後複製

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

Thread thread = new Thread(threadDemo);
登入後複製

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

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

thread.Start(str);
登入後複製

上面設定的參數是-

String str = "Hello World!";
登入後複製

範例

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

即時示範

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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板