在Ruby中的Thread.new退出后打印一行

时间:2012-03-08 04:17:44

标签: ruby

基本上我想知道Thread.new创建的线程何时退出并在此之后添加一行。我该怎么做?

1 个答案:

答案 0 :(得分:0)

您可以使用Thread.join来阻止,直到线程终止:

thread = Thread.new  # Obviously called with necessary arguments
thread.join
puts "Thread has terminated"