線程#terminate():terminate()是一個線程類方法,用於終止線程並安排另一個線程運行。
用法: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 : #
注意:
在輸出中生成的線程對象取決於係統和指針值。因此,每次運行代碼時,它可能會有所不同。
相關用法
- Ruby StringScanner terminate用法及代碼示例
- Ruby Thread backtrace_locations()用法及代碼示例
- Ruby Thread abort_on_exception=用法及代碼示例
- Ruby Thread abort_on_exception用法及代碼示例
- Ruby Thread alive?用法及代碼示例
- Ruby Thread add_trace_func用法及代碼示例
- Ruby Thread kill()用法及代碼示例
- Ruby Thread backtrace用法及代碼示例
- Ruby Thread group()用法及代碼示例
- Ruby Thread exit()用法及代碼示例
- Ruby Set add?用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | Thread terminate() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。