======== 调用无参数的方法 ============
//创建线程对象 传入 委托线程执行的方法
Thread ts = new Thread(CountTimes);
//启动线程 执行方法
ts.Start();
//将线程设置为后台线程(当所有的前台线程结束后,后台线程会自动退出)
//ts.IsBackground = true;//将该线程设置为后台线程
============ 调用有参数的方法 ==================
Thread tr = new Thread(() =>
{
RptBind("PKID desc");
});
//将线程设置为后台线程(当所有的前台线程结束后,后台线程会自动退出)
//将该线程设置为后台线程
tr.IsBackground = true;
tr.Start();
System.Threading.Thread t = new System.Threading.Thread(() =>
{
fssong(id, name, po_bu, next_nun);
});
t.IsBackground = true;
t.Start();
时间: 2024-11-03 03:26:52