我创建了一个对象调用Proc.new
并将一个块作为参数传递给它:
a = Proc.new{|x| x = x*10; puts(x)}
#=> #<Proc:0xd26fd8@(irb):3>
a.call(10)
#100
#=> nil
a.call(10,20)
#100
#=> nil
a.call(10,20,40)
#100
#=> nil
我也没用过splat operator(*)
。但是如何阻止参数x
能够忽略额外的参数呢?
当我们做同样的事情时,我们会得到一个明确的错误,但为什么块参数不是这种情况?
def show(x)
print "X::#{x}"
end
#=> nil
show(10)
#X::10#=> nil
show(10,20)
#ArgumentError: wrong number of arguments (2 for 1)
# from (irb):6:in `show'
# from (irb):10
# from C:/Ruby193/bin/irb:12:in `<main>'