るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.022秒)
トップページ > クラス:Module[x] > クエリ:const_missing[x] > 種類:インスタンスメソッド[x]

別のキーワード

  1. win32ole const_load
  2. module const_missing
  3. _builtin const_missing
  4. rubygems const_missing
  5. quickloader const_missing

ライブラリ

検索結果

Module#const_missing(name) (18109.0)

定義されていない定数を参照したときに Ruby インタプリタが このメソッドを呼びます。

...mbol

@raise NameError このメソッドを呼び出した場合、デフォルトで発生する例外


//emlist[例][ruby]{
class Foo
def Foo.const_missing(id)
warn "undefined constant #{id.inspect}"
end

Bar
end
Foo::Bar

# => undefined constant :Bar
# undefined constant :Bar
//}...