一、Thread线程使用方法
- 初始化方法
cs
Thread th1;
th1 = new Thread(方法名);
th1.IsBackground = true;
th1.Start();
- 传参
cs
///定义一个object接受参数的方法
private void Test(object n){
string str1 = n as string;
MessageBox.Show(str1);
}
// 调用方法
Thread th2
string str1 = "我是线程2";
th2 = new Thread(Test);
th2.isBackground = true;
th2.Start(str1); // 这边在启动的时候传递参数
- 加入线程池
cs
ThreadPool.QueueUserWorkItem(方法名);
- 关闭线程
cs
Private void Form1_FormClosing(){
th1.Abort();
}
二、ThreadPool 线程使用方法
cs
ThreadPool.QueueUserWorkItem((str)=> {代码块}, "线程参数");
三、解决跨线程调用组件
- 使用一行代码解决(代码多不推荐)
cs
// 在 Form1() 方法中加入以下代码
CheckForIllegalCrossThreadCalls = false;
- 在线程调用的方法中组件使用委托
cs
组件.BeginInvoke(new Action<变量类型>((变量)=>{代码块}), 形参);
cs
textBox1.BeginInvoke(new Action<string>((str) => {
textBox1.Text += str;
}), "111111\r\n");