るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.036秒)
トップページ > クエリ:@[x] > クエリ:DelegateClass[x]

別のキーワード

  1. delegate delegateclass
  2. kernel delegateclass
  3. delegateclass kernel
  4. delegateclass delegate

ライブラリ

モジュール

検索結果

Kernel#DelegateClass(superclass) -> object (18113.0)

クラス superclass のインスタンスへメソッドを委譲するクラスを定義し、 そのクラスを返します。

...スへメソッドを委譲するクラスを定義し、
そのクラスを返します。

@
param superclass 委譲先となるクラス

例:

//emlist{
require 'delegate'

class ExtArray < DelegateClass(Array)
def initialize
super([])
end
end
a = ExtArray.new
p a.class # => ExtArray
a....