るりまサーチ

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

別のキーワード

  1. rc2 new
  2. rc4 new
  3. context rc
  4. context rc?
  5. rc5 new

ライブラリ

モジュール

検索結果

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

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

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

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

例:

//emlist{
require 'delegate'

class ExtArray < DelegateClass(Array)
def initialize
super([])
end
end
a = E...