當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。