ruby Ruby继承

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby Ruby继承相关的知识,希望对你有一定的参考价值。

class People
  #public by default
  def say
  end

  protected #all below are protected (until private)
  def say_child
  end

  private #all below are private
  def say_secret
  end
end

class Worker < People #inherit by < symbol
  #can invoke say and say_child
end

以上是关于ruby Ruby继承的主要内容,如果未能解决你的问题,请参考以下文章

ruby 我自己测试Ruby类,对象以及它们如何组合在一起,继承等等。

继承在 Ruby 中是如何工作的?

从 Ruby 中的模块/mixins 继承类方法

从 Ruby 中的继承类调用方法

ruby 类继承

ruby 继承工厂