るりまサーチ

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

別のキーワード

  1. module attr
  2. module protected
  3. module private
  4. module public
  5. module module_eval

ライブラリ

検索結果

UnboundMethod#owner -> Class | Module (21256.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
//}...