るりまサーチ (Ruby 2.6.0)

最速Rubyリファレンスマニュアル検索!
2件ヒット [1-2件を表示] (0.120秒)
トップページ > クエリ:i[x] > クエリ:h[x] > クエリ:super_method[x] > バージョン:2.6.0[x]

別のキーワード

  1. _builtin to_h
  2. hash to_h
  3. env to_h
  4. enumerable to_h
  5. array to_h

ライブラリ

クラス

検索結果

Method#super_method -> Method | nil (82258.0)

self 内で super を実行した際に実行されるメソッドを Method オブジェ クトにして返します。

self 内で super を実行した際に実行されるメソッドを Method オブジェ
クトにして返します。

@see UnboundMethod#super_method

//emlist[例][ruby]{
class Super
def foo
"superclass method"
end
end

class Sub < Super
def foo
"subclass method"
end
end

m = Sub.new.method(:foo) # => #<Method: Sub#foo>
m.call # => "subclass me...

UnboundMethod#super_method -> UnboundMethod | nil (82222.0)

self 内で super を実行した際に実行されるメソッドを UnboundMethod オブジェ クトにして返します。

self 内で super を実行した際に実行されるメソッドを UnboundMethod オブジェ
クトにして返します。


@see Method#super_method