るりまサーチ

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

別のキーワード

  1. _builtin raise
  2. kernel raise
  3. fiber raise
  4. thread raise
  5. e2mmap raise

検索結果

Object#respond_to?(name, include_all = false) -> bool (129.0)

オブジェクトがメソッド name を持つとき真を返します。

...します。

メソッドが定義されていない場合は、Object#respond_to_missing? を呼
び出してその結果を返します。

@param name Symbol または文字列で指定するメソッド名です。

@param include_all private メソッドと protected メソッドを確認の...
...start"
end

def template_method
raise
NotImplementedError.new
end

def finish
puts "finish"
end
end

class ImplTemplateMethod
include
Template
def template_method
"implement template_method"
end
end

class NotImplTemplateMethod
include
Template

# not implement templa...