1 def test(*args)
2   puts *args
3 end
4 
5 test()
6 test('a')
7 test('a','b','c')
8 test({:a=>1,:b=>2,:c=>3})
9 test([1,2,3])

输出结果:

a
a
b
c
c3b2a1
1
2
3

看来这样传参很方便