るりまサーチ

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

別のキーワード

  1. bigdecimal/util to_d
  2. float to_d
  3. integer to_d
  4. kernel $-d
  5. openssl d

ライブラリ

クラス

検索結果

Method#super_method -> Method | nil (30420.0)

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

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

@see UnboundMethod#super_method

//emlist[例][ruby]{
class Super
d
ef foo
"superclass method"
end
end

class Sub < Super
d
ef 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"
//}...

UnboundMethod#super_method -> UnboundMethod | nil (30408.0)

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

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


@see Method#super_method...