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


Ruby Object.singleton_methods用法及代码示例


本文简要介绍ruby语言中 Object.singleton_methods 的用法。

用法

singleton_methods(all=true) → array

返回 obj 的单例方法名称的数组。如果可选的 all 参数为 true,则列表将包含 obj 中包含的模块中的方法。仅返回公共和受保护的单例方法。

module Other
  def three() end
end

class Single
  def Single.four() end
end

a = Single.new

def a.one()
end

class << a
  include Other
  def two()
  end
end

Single.singleton_methods    #=> [:four]
a.singleton_methods(false)  #=> [:two, :one]
a.singleton_methods         #=> [:two, :one, :three]

相关用法


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