るりまサーチ

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

別のキーワード

  1. _builtin end
  2. ripper end_seen?
  3. _builtin exclude_end?
  4. _builtin end_with?
  5. io seek_end

ライブラリ

クラス

検索結果

Method#super_method -> Method | nil (18243.0)

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

...Method#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 method"
m.super_method # => #<Method: Super#foo>
m.super_method.call...