class Test def add(a, b) return a + b end def sub(a, b) return a - b end end obj = Test.new a = [obj.method("add"), obj.method(:sub)] p a[0].call(10, 20) # 30 を出力 p a[1].call(10, 20) # -10 を出力