るりまサーチ

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

別のキーワード

  1. _builtin call
  2. formatter call
  3. fiddle call
  4. tracer display_c_call
  5. continuation call

ライブラリ

検索結果

Method#super_method -> Method | nil (27333.0)

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

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