るりまサーチ

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

別のキーワード

  1. _builtin unboundmethod
  2. unboundmethod parameters
  3. unboundmethod source_location
  4. unboundmethod inspect
  5. unboundmethod arity

ライブラリ

クラス

検索結果

Method#super_method -> Method | nil (18132.0)

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