1. 首页
  2. 数据库
  3. 其它
  4. rudy 重载方法 详解

rudy 重载方法 详解

上传者: 2021-02-01 12:43:03上传 PDF文件 22.54KB 热度 16次
在子类里,我们可以通过重载父类方法来改变实体的行为. ruby> class Human | def identify | print “I’m a person.\n” | end | def train_toll(age) | if age < 12 | print “Reduced fare.\n”; | else | print “Normal fare.\n”; | end | end | end nil ruby
用户评论