本文实例讲述了C#停止线程的方法。分享给大家供大家参考。具体实现方法如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WinFormApp
{
public partial class Form1 : Form
{
System.Threading.CancellationTokenSource cancel = new System.Threading.CancellationTokenSource();
System.Threading.Thread[] thread;
int len = 2;
public Form1()
{
InitializeComponent();
thread = new System.Threading.Thread[len];
}
void RunThread()
{
ThreadInvoke.SetEventInvokeValue(richTextBox1, "即将开始运行线程." );
System.Threading.Thread t = null ;
for ( int i = 0; i < len; i++)
{
t = new System.Threading.Thread( new System.Threading.ThreadStart(Sample));
t.Name = "thread_0" + i.ToString();
t.IsBackground = true ;
thread.SetValue(t, i);
t.Start();
}
}
void Sample()
{
string name = System.Threading.Thread.CurrentThread.Name;
ThreadInvoke.SetEventInvokeValue(richTextBox1, "正在运行线程:" + name);
while ( true )
{
if (cancel.IsCancellationRequested)
{
ThreadInvoke.SetEventInvokeValue(richTextBox1, "线程:" + name + " 停止运行..." );
//线程被终止后回调
cancel.Token.Register( delegate
{
ThreadInvoke.SetEventInvokeValue(richTextBox1, "线程:" + name + " 停止运行之后的回调函数..." );
});
break ;
}
}
}
void ShowStatu()
{
StringBuilder sb = new StringBuilder();
for ( int i = 0; i < len; i++)
{
if (thread[i].IsAlive == true )
{
sb.AppendLine( "线程:" + thread[i].Name.ToString() + " 还在运行..." );
}
}
if (sb.ToString() == "" )
{
sb.AppendLine( "线程已经全部停止..." );
}
richTextBox1.Text += sb.ToString();
}
/// <summary>
/// 开始运行线程
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button1_Click( object sender, EventArgs e)
{
RunThread();
}
/// <summary>
/// 显示所有的线程状态
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button2_Click( object sender, EventArgs e)
{
ShowStatu();
}
/// <summary>
/// 终止所有的线程
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button3_Click( object sender, EventArgs e)
{
cancel.Cancel();
}
}
}
|
希望本文所述对大家的C#程序设计有所帮助。