例如这样public thread thr;
private void start()
{
thr=new thread(new theardstart(exe));
}
private viod end()
{
if(条件)///我写的程序线程的初始化和线程的中止不在同一个构造函数内
///要怎么判断这个线程是否初始化,而且,没初始化用不了thr.IsAlive();
{
thr.about();
}
}