我很有趣如何在ruby中传递带参数的方法。我需要实现像命令模式这样灵活的功能设置。示例=> lambda函数在C#中。
答案 0 :(得分:2)
Ruby lambda
函数定义如下:
a.lambda{ puts "Hello"}
a.call #=> Hello
a = lambda{|str| puts str }
a.call("Hello world !!!") #=> Hello world !!!
a = lambda{|*args| puts args.join(' ')}
a.call("Hello", "World") #=> Hello World
答案 1 :(得分:1)
你可以按照Ruby中大多数事情的方式执行命令模式:使用块。
class Soldier
def initialize(&block)
@command = block
end
def action
@command.call if @command
end
end
s = Soldier.new do #the block
line = "We are drill machines, drill machines feel no pain"
2.times{ puts line }
puts line.upcase
end
puts "Action:"
s.action
答案 2 :(得分:0)
您可以动态调用方法及其参数列表。以下只是其中一种方式
class Foo
def foo(what)
puts what
end
end
Foo.new.send(:what, "something") # ==> "something"