线程#exit():exit()是一个线程类方法,用于终止线程并安排另一个线程运行。
用法:Thread.exit()
参数:线程值
返回:终止线程
示例1:
# Ruby code for Thread.exit() method
# declaring Thread
a = Thread.new { print "a"; Thread.stop; print "c" }
# exit form
puts "Thread a exit() form : #{a.exit()}\n\n"
输出:
Thread a exit() form : #
示例2:
# Ruby code for Thread.exit() method
# declaring Thread
a = Thread.new { puts "HI! I am learning to code"}
# exit form
puts "Thread a exit() form : #{a.exit()}\n\n"
输出:
Thread a exit() form : #
注意:
在输出中生成的线程对象取决于系统和指针值。因此,每次运行代码时,它可能会有所不同。
相关用法
- Ruby Thread backtrace用法及代码示例
- Ruby Thread group()用法及代码示例
- Ruby Thread abort_on_exception=用法及代码示例
- Ruby Thread kill()用法及代码示例
- Ruby Thread add_trace_func用法及代码示例
- Ruby Thread terminate()用法及代码示例
- Ruby Thread backtrace_locations()用法及代码示例
- Ruby Thread abort_on_exception用法及代码示例
- Ruby Thread alive?用法及代码示例
- Ruby Set add?用法及代码示例
- Ruby Set delete?用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | Thread exit() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。