Ruby:模块静态方法的alias_method

n3schb8v  于 2022-12-12  发布在  Ruby
关注(0)|答案(1)|浏览(115)

给定此模块

module Test
  def self.foo(v)
    puts "Test.foo with #{v}"
  end
end

以下不起作用

module Test  
  alias_method :bar, :foo
  # ...
end

虽然它对示例方法有效我得到以下错误

NameError: undefined method `foo' for module `Test'

我的目标是重写self.foo,如下所示

def self.foo(v)
  self.bar(v + " monkey patched")
end

有没有办法给静态方法取别名?

vhmi4jdf

vhmi4jdf1#

Test.singleton_class.send(:alias_method, :bar, :foo)
Test.bar("cat")
  #=> "Test Foo with cat"

相关问题