当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Kernel.then用法及代码示例


本文简要介绍ruby语言中 Kernel.then 的用法。

用法

then {|x| block } → an_object

向块生成 self 并返回块的结果。

3.next.then {|x| x**x }.to_s             #=> "256"

then 的良好用法是方法链中的值管道:

require 'open-uri'
require 'json'

construct_url(arguments).
  then {|url| URI(url).read }.
  then {|response| JSON.parse(response) }

当无块调用时,该方法返回 Enumerator ,例如,可用于条件 circuit-breaking:

# meets condition, no-op
1.then.detect(&:odd?)            # => 1
# does not meet condition, drop value
2.then.detect(&:odd?)            # => nil

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Kernel.then。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。