るりまサーチ

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

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. file truncate
  4. file lstat
  5. file size

ライブラリ

検索結果

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

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

...に応答できることをいいます。

Windows での Process.fork や GNU/Linux での File.lchmod の
ような NotImplementedError が発生する場合は false を返します。

※ NotImplementedError が発生する場合に false を返すのは
Rubyの組み込みライブラリや...
...tImplementedError が発生する場合は true を返します。

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

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

@param include_all privat...
...

//emlist[][ruby]{
class F
def hello
"Bonjour"
end
end

class D
private
def hello
"Guten Tag"
end
end
list = [F.new,D.new]

list.each{|it| puts it.hello if it.respond_to?(:hello)}
#=> Bonjour

list.each{|it| it.instance_eval("puts hello if it.respond_to?(:hello, true)")}
#=> Bo...