mod.instance_method(symbol) â unbound_method
Instance Public methods
Returns an UnboundMethod
representing the given instance
method in mod.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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) string.each_char {|b| Dispatcher[b].bind( self ).call } end end interpreter = Interpreter. new interpreter.interpret( 'dave' ) |
produces:
1 | Hello there, Dave! |
Please login to continue.