るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.006秒)

別のキーワード

  1. _builtin owner
  2. method owner
  3. unboundmethod owner
  4. monitor mon_check_owner

ライブラリ

検索結果

UnboundMethod#owner -> Class | Module (18121.0)

このメソッドが定義されている class か module を返します。

...このメソッドが定義されている class か module を返します。

//emlist[例][ruby]{
Integer.instance_method(:to_s).owner # => Integer
Integer.instance_method(:to_c).owner # => Numeric
Integer.instance_method(:hash).owner # => Kernel
//}...