alias_method和class_methods不混用?

时间:2010-05-27 21:19:13

标签: ruby metaprogramming alias-method

我一直在努力修补全局缓存模块,但我无法弄清楚为什么这不起作用。

有人有任何建议吗?

这是错误:

NameError: undefined method `get' for module `Cache'
    from (irb):21:in `alias_method'

...由此代码生成:

module Cache
  def self.get
    puts "original"
  end
end

module Cache
  def self.get_modified
    puts "New get"
  end
end

def peek_a_boo
  Cache.module_eval do
    # make :get_not_modified
    alias_method :get_not_modified, :get
    alias_method :get, :get_modified
  end

  Cache.get

  Cache.module_eval do
    alias_method :get, :get_not_modified
  end
end

# test first round
peek_a_boo

# test second round
peek_a_boo

1 个答案:

答案 0 :(得分:17)

alias_method的调用将尝试对实例方法进行操作。 <{1}}模块中没有名为get的实例方法,因此失败。

因为您想要对方法(Cache的元类上的方法)进行别名,您必须执行以下操作:

Cache