Ruby 线程 terminate()函数
Thread#terminate() : terminate() 是Thread类的一个方法,用于终止线程并安排另一个线程运行。
语法。Thread.terminate()
参数。线程值
返回:终止该线程
例子 #1 :
# Ruby code for Thread.terminate() method
# declaring Thread
a = Thread.new { print "a"; Thread.stop; print "c" }
# terminate form
puts "Thread a terminate() form : #{a.terminate()}\n\n"
输出:
Thread a terminate() form : #
例子 #2 :
# Ruby code for Thread.terminate() method
# declaring Thread
a = Thread.new { puts "HI! I am learning to code"}
# terminate form
puts "Thread a terminate() form : #{a.terminate()}\n\n"
输出:
Thread a terminate() form : #
注:
输出中生成的线程对象取决于系统和指针值。因此,每次运行代码时,它可能会有所不同。