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


Ruby Refinement.import_methods用法及代码示例


本文简要介绍ruby语言中 Refinement.import_methods 的用法。

用法

import_methods(module, ...) → self

从模块中导入方法。与 Module#include 不同, Refinement#import_methods 复制方法并将它们添加到细化中,因此在导入的方法中激活细化。

请注意,由于方法复制,只能导入 Ruby 代码中定义的方法。

module StrUtils
  def indent(level)
    ' ' * level + self
  end
end

module M
  refine String do
    import_methods StrUtils
  end
end

using M
"foo".indent(3)
#=> "   foo"

module M
  refine String do
    import_methods Enumerable
    # Can't import method which is not defined with Ruby code: Enumerable#drop
  end
end

相关用法


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