1件ヒット
[1-1件を表示]
(0.070秒)
ライブラリ
- ビルトイン (1)
検索結果
-
Method
# super _ method -> Method | nil (8.0) -
self 内で super を実行した際に実行されるメソッドを Method オブジェ クトにして返します。
...メソッドを Method オブジェ
クトにして返します。
@see UnboundMethod#super_method
例:
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.c......all # => "subclass method"
m.super_method # => #<Method: Super#foo>
m.super_method.call # => "superclass method"...