るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.021秒)
トップページ > クラス:Method[x] > バージョン:2.2.0[x] > ライブラリ:ビルトイン[x] > クエリ:super_method[x]

別のキーワード

  1. _builtin super_method
  2. method super_method
  3. unboundmethod super_method
  4. systemcommand super_each
  5. shell/system-command super_each

検索結果

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