22件ヒット
[1-22件を表示]
(0.015秒)
別のキーワード
ライブラリ
- ビルトイン (22)
クラス
- Method (11)
- UnboundMethod (11)
検索結果
-
UnboundMethod
# super _ method -> UnboundMethod | nil (27224.0) -
self 内で super を実行した際に実行されるメソッドを UnboundMethod オブジェ クトにして返します。
...self 内で super を実行した際に実行されるメソッドを UnboundMethod オブジェ
クトにして返します。
@see Method#super_method... -
Method
# super _ method -> Method | nil (18125.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...