Thread#abort_on_exception =():abort_on_exception =()是一个Thread类方法,它将引发的异常设置为true或false
用法:Thread.abort_on_exception=()
参数:线程值
返回:将引发的异常设置为true或false
范例1:
# Ruby code for Thread.abort_on_exception=() method
# declaring Thread
a = Thread.new { print "a"; Thread.stop; print "c" }
# abort_on_exception= form
puts "Thread a abort_on_exception=() form:#{a.abort_on_exception=true}\n\n"
输出:
Thread a abort_on_exception=() form:true
范例2:
# Ruby code for Thread.abort_on_exception=() method
# declaring Thread
a = Thread.new { puts "HI! I am learning to code"}
# abort_on_exception= form
puts "Thread a abort_on_exception=() form:#{a.abort_on_exception=false}\n\n"
输出:
Thread a abort_on_exception=() form:false
相关用法
- Ruby Thread backtrace用法及代码示例
- Ruby Thread group()用法及代码示例
- Ruby Thread terminate()用法及代码示例
- Ruby Thread exit()用法及代码示例
- Ruby Thread kill()用法及代码示例
- Ruby Thread add_trace_func用法及代码示例
- Ruby Thread abort_on_exception用法及代码示例
- Ruby Thread alive?用法及代码示例
- Ruby Thread backtrace_locations()用法及代码示例
- Ruby Set add?用法及代码示例
- Ruby Math exp()用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | Thread abort_on_exception= function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。