我想知道你是否可以将定义的方法用于另一个定义的方法
例如
def method1(example)
funtion1
end
def method2(example)
funtion2
end
如何将method1用于method2
答案 0 :(得分:1)
答案 1 :(得分:1)
def method_1(arg)
arg.call
end
def method_2
puts 'hi'
end
method_1(method(:method_2)) #=> should print 'hi'