るりまサーチ

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

別のキーワード

  1. stringio print
  2. _builtin print
  3. cgi print
  4. http get_print
  5. irb/output-method print

ライブラリ

クラス

検索結果

Module#instance_method(name) -> UnboundMethod (18280.0)

self のインスタンスメソッド name をオブジェクト化した UnboundMethod を返します。

...す。

@
param name メソッド名を Symbol または String で指定します。

@
raise NameError self に存在しないメソッドを指定した場合に発生します。

@
see Module#public_instance_method, Object#method

//emlist[例][ruby]{
class Interpreter
def do_a() print "there, "...
...; end
def do_d() print "Hello "; end
def do_e() print "!\n"; end
def do_v() print "Dave"; end
Dispatcher = {
"a" => instance_method(:do_a),
"d" => instance_method(:do_d),
"e" => instance_method(:do_e),
"v" => instance_method(:do_v)
}
def interpret(string)
stri...