深入浅出多线程系列之二:关于Thread的那些事
来源:网络 责任编辑:栏目编辑 发表时间:2013-07-02 04:31 点击:次
1:你可以调用线程的实例方法Join来等待一个线程的结束。例如:
public static void MainThread()
{
Thread t = new Thread(Go);
t.Start();
t.Join();
Console.WriteLine("Thread t has ended!");
}
static void Go()
{
for (int i = 0; i < 1000; i++)
Console.Write("y");
}
{
Thread t = new Thread(Go);
t.Start();
t.Join();
Console.WriteLine("Thread t has ended!");
}
static void Go()
{
for (int i = 0; i < 1000; i++)
Console.Write("y");
}
在打印了1000个Y之后,后面就会输出”Thread t has ended!”.,
你可以在调用Join
相关新闻>>
最新推荐更多>>>
热门新闻进入移动开发频道>>
- 发表评论
-
- 最新评论 更多>>