本文简要介绍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 Regexp named_captures()用法及代码示例
- Ruby Recorder类用法及代码示例
- Ruby Regexp to_s()用法及代码示例
- Ruby Regexp.eql?用法及代码示例
- Ruby Regexp hash()用法及代码示例
- Ruby Resolution.new用法及代码示例
- Ruby Regexp.fixed_encoding?用法及代码示例
- Ruby Resolver.resolve用法及代码示例
- Ruby Regexp类用法及代码示例
- Ruby Regexp.options用法及代码示例
- Ruby Regexp inspect()用法及代码示例
- Ruby Regexp.inspect用法及代码示例
- Ruby Readline.readline用法及代码示例
- Ruby Regexp.names用法及代码示例
- Ruby Resolution.require_nested_dependencies_for用法及代码示例
- Ruby Readline模块用法及代码示例
- Ruby Requirement.parse用法及代码示例
- Ruby Regexp source()用法及代码示例
- Ruby Resolution.possibility用法及代码示例
- Ruby Regexp match()用法及代码示例
- Ruby Regexp.rxp =~ str用法及代码示例
- Ruby Readline.completion_proc =用法及代码示例
- Ruby RemoteFetcher.new用法及代码示例
- Ruby Resolution.possibility_satisfies_requirements?用法及代码示例
- Ruby Regexp.escape用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Refinement.import_methods。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。