C# Abort Thread終止線程的方法
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
使用C# Thread.Abort方法讓線程終止,干凈的退出線程,以下代碼或許對(duì)你有用:
static void Main(string[] args) { Thread myThread;//聲明線程 //用線程起始點(diǎn)的ThreadStart委托創(chuàng)建該線程的實(shí)例 myThread = new Thread(new ThreadStart(createThread)); myThread.Start();//啟動(dòng)線程 myThread.Abort();//終止線程 Console.ReadLine(); } public static void createThread() { Console.Write("線程實(shí)例"); } 該文章在 2021/2/4 10:12:16 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |