0

如何在不使用 eval 的情况下更改以下代码。有没有一种方法可以在初始化堆时根据参数对 getroot 函数起别名。

class Heap

  def initialize arr,type=:min
     newfunc = "get#{type.to_s}".to_sym
     eval ("class << self; alias #{newfunc} :getroot; end")
  end

  def getroot     
     puts "Inside Getroot"
  end

end

a = Heap.new([1,2,3],:max)
a.getmax                      #prints Inside Getroot

b = Heap.new([1,2,3],:min)
b.getmin                      #prints Inside Getroot
4

1 回答 1

3

这令人满意吗?

class Heap
  def initialize arr, type=:min
    newfunc = "get#{type.to_s}".to_sym
    self.class.class_eval {alias_method newfunc, :getroot}
  end
  def getroot
    puts "Inside Getroot"
  end
end
于 2012-04-20T02:16:44.460 回答