让我们看一个例子
ruby-1.9.2-p180 :001 > class Demo
ruby-1.9.2-p180 :002?> def self.class_method1(a,b=25)
ruby-1.9.2-p180 :003?> return a + b
ruby-1.9.2-p180 :004?> end
ruby-1.9.2-p180 :005?> end
ruby-1.9.2-p180 :007 > m = Demo.method(:class_method1)
ruby-1.9.2-p180 :012 > m.parameters
=> [[:req, :a], [:opt, :b]]
我有下一个问题: 如何获取b的默认参数值? (25)