是否可以在Ruby中定义带有可选参数的块?

我正在尝试动态定义调用另一个带有options参数的函数函数
class MyClass
  ["hour","minute","second"].each do |interval|
    define_method "get_#{interval}" do |args|
      some_helper(interval,args)
    end
  end
  def some_helper(interval,options={})
    # Do something,with arguments
  end
end

我希望能够以这两种方式调用MyClass上的不同方法(使用和不使用可选参数):

mc = MyClass.new
mc.get_minute( :first_option => "foo",:second_option => "bar")
mc.get_minute  # This fails with: warning: multiple values for a block parameter (0 for 1)

在第二次拨打分钟时,我看到了这个警告:

warning: multiple values for a block parameter (0 for 1)

>有没有办法为“get_ *”方法编写块,以便不会出现此警告?
>我是否滥用define_method?

解决方法

您需要做的唯一更改是将args更改为* args. *表示args将包含块的可选参数数组.

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...