るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.154秒)
トップページ > クエリ:t[x] > クエリ:Ruby[x] > クエリ:on[x] > クラス:Module[x] > 種類:インスタンスメソッド[x] > クエリ:singleton_class?[x]

別のキーワード

  1. optparse on
  2. optionparser on
  3. tracer on
  4. _builtin abort_on_exception
  5. thread abort_on_exception

ライブラリ

検索結果

Module#singleton_class? -> bool (30321.0)

self が特異クラスの場合に true を返します。そうでなければ false を返し ます。

...self が特異クラスの場合に true を返します。そうでなければ false を返し
ます。

//emlist[例][ruby]{
class C
end
C.singleton_class? # => false
C.singleton_class.singleton_class? # => true
//}...