2

假设我有一堂课:

class Person
  def self.say
    puts "hello"
  end
end

和一个子类:

  class Woman < Person
  end

我希望“say”方法是公共方法,但我不希望它被“Woman”或任何其他子类继承。实现这一目标的正确方法是什么?

  • 我不想重写该方法,因为我不知道未来的子类。
  • 我知道我可以使用类似的东西remove_method,但我宁愿根本不继承该方法
4

2 回答 2

3

我想在基类中有一个静态方法,它根据我提供的参数找到一个子类

在其他地方定义该静态方法,例如在模块中:

module Person

  class Base
  end

  class Woman < Base
  end

  def self.create(name)
    case name
    when :woman
      Woman.new
    end
  end

end

Person.create(:woman)          # => #<Person::Woman:0x007fe5040619e0>
Person::Woman.create(:woman)   # => undefined method `create' for Person::Woman:Class
于 2013-06-18T13:05:33.847 回答
1

我同意这是一个奇怪的要求。但是如果你坚持,你可以inherited为子类创建一个钩子Person并手动删除类方法。

class Person
  def self.say
    puts "Hello"
  end

  def self.inherited(subclass)
    self.methods(false).each do |m|
      subclass.instance_eval { eval("undef :#{m}") }
    end
  end
end

class Woman < Person
end

Person.say   #=> Hello
Woman.say    #=> undefined method `say' for Woman:Class (NoMethodError)
于 2013-06-18T12:34:49.353 回答