るりまサーチ (Ruby 2.1.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.095秒)
トップページ > モジュール:Kernel[x] > クエリ:Kernel.#p[x] > クエリ:JSON[x] > クエリ:system[x] > クエリ:raise[x] > クエリ:import[x] > バージョン:2.1.0[x] > クエリ:timeout[x] > クエリ:$11[x] > クエリ:at_exit[x] > クエリ:autoload?[x] > ライブラリ:delegate[x]

別のキーワード

  1. timeout timeout
  2. rake import
  3. openssl timeout
  4. openssl timeout=
  5. kernel timeout

検索結果

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

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

...クラスを定義し、
そのクラスを返します。

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

例:

//emlist{
require 'delegate'

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