如何在Rails中创建具有不同类型的模型

时间:2013-02-12 01:46:07

标签: ruby-on-rails

我想用变量a,b和c创建一个模型Test,它响应函数p,q和r。我想用变量a,b,c,d和e创建另一个模型Supertest,它响应函数p,q,r,s和t。

我可以创建一个模型Test并为其指定类型(常规或超级),还是必须创建两种类型?

1 个答案:

答案 0 :(得分:0)

听起来你只想让一个类继承另一个类。

以下是rubylearning.com

的示例
class Mammal  
  def breathe  
    puts "inhale and exhale"  
  end  
end  

class Cat < Mammal  
  def speak  
    puts "Meow"  
  end  
end  

rani = Cat.new  
rani.breathe  
rani.speak