前言
多線程是C#中一個重要的概念,多線程指的是在同一進程中同時運行多個線程的機制。多線程適用于需要提高系統并發性、吞吐量和響應速度的場景,可以充分利用多核處理器和系統資源,提高應用程序的性能和效率。
多線程常用場景
什么是進程?
進程(Process)是計算機中的一個執行中的程序,它是對正在運行的程序的抽象。一個進程包括了程序的代碼、數據、堆棧以及其他操作系統所需的資源。
什么是線程?
線程(Thread)是進程中的一個執行單元,一個進程可以包含多個線程,它們共享進程的資源,但擁有獨立的執行流程。
使用 Thread 類
public static void ThreadMethod()
{
var newThread = new Thread(WorkerMethod);
newThread.Start();
for (int i = 0; i < 8; i++)
{
Console.WriteLine($"ThreadMethod 主線程開始工作:{i}");
Thread.Sleep(100);
}
}
private static void WorkerMethod()
{
for (int i = 0; i < 8; i++)
{
Console.WriteLine($"WorkerMethod 輔助線程開始工作:{i}");
Thread.Sleep(100);
}
}
使用 ThreadPool 類
public static void ThreadPoolMethod()
{
ThreadPool.QueueUserWorkItem(o => WorkerMethod());
for (int i = 0; i < 8; i++)
{
Console.WriteLine($"ThreadPoolMethod 主線程開始工作:{i}");
Thread.Sleep(100);
}
}
private static void WorkerMethod()
{
for (int i = 0; i < 8; i++)
{
Console.WriteLine($"WorkerMethod 輔助線程開始工作:{i}");
Thread.Sleep(100);
}
}
使用 Task 類
public static void TaskMethod()
{
Task.Run(() => WorkerMethod());
for (int i = 0; i < 8; i++)
{
Console.WriteLine($"TaskMethod 主線程開始工作:{i}");
Task.Delay(100).Wait();
}
}
private static void WorkerMethod()
{
for (int i = 0; i < 8; i++)
{
Console.WriteLine($"WorkerMethod 輔助線程開始工作:{i}");
Thread.Sleep(100);
}
}
使用 Parallel 類
public static void ParallelMethod()
{
Parallel.Invoke(WorkerMethod, WorkerMethodOther1, WorkerMethodOther2);
}
private static void WorkerMethod()
{
for (int i = 0; i < 8; i++)
{
Console.WriteLine($"WorkerMethod 輔助線程開始工作:{i}");
Thread.Sleep(100);
}
}
private static void WorkerMethodOther1()
{
for (int i = 0; i < 8; i++)
{
Console.WriteLine($"WorkerMethodOther1 輔助線程開始工作:{i}");
Thread.Sleep(100);
}
}
private static void WorkerMethodOther2()
{
for (int i = 0; i < 8; i++)
{
Console.WriteLine($"WorkerMethodOther2 輔助線程開始工作:{i}");
Thread.Sleep(100);
}
}
該文章在 2024/5/13 11:58:45 編輯過