当前位置: 首页 > 图文教程 > 脚本技术 > Ruby > rudy 重载方法 详解

Ruby
print不自动换行,puts会自动换行
windows和linux下Ruby的下载与安装
Ruby入门点滴-Ruby的安装
Ruby入门介绍
什么是ruby和Ruby概述
RUBY文档中心-学习开始
ruby 简单例子
Ruby 字符串处理
ruby 正则表达式 教程
ruby 数组使用教程
ruby 一些简单的例子
ruby 流程控制 方法
ruby 迭代器使用方法
ruby 面向对象思维 概念
rudy 方法 分析
分析 rudy 类
rudy 继承 概念
rudy 重载方法 详解
剖析 rudy 访问控制
ruby 单态方法 分析

Ruby 中的 rudy 重载方法 详解


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 73 ::
收藏到网摘: n/a

在子类里,我们可以通过重载父类方法来改变实体的行为.
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> Human.new.identify
I'm a person.
nil
ruby> class Student1<Human
| def identify
| print "I'm a student.\n"
| end
| end
nil
ruby> Student1.new.identify
I'm a student.
nil

如果我们只是想增强父类的 identify 方法而不是完全地替代它,就可以用 super.
ruby> class Student2<Human
| def identify
| super
| print "I'm a student too.\n"
| end
| end
nil
ruby> Student2.new.identify
I'm a human.
I'm a student too.
nil

super 也可以让我们向原有的方法传递参数.这里有时会有两种类型的人...
ruby> class Dishonest<Human
| def train_toll(age)
| super(11) # we want a cheap fare.
| end
| end
nil
ruby> Dishonest.new.train_toll(25)
Reduced fare.
nil
ruby> class Honest<Human
| def train_toll(age)
| super(age) # pass the argument we were given
| end
| end
nil
ruby> Honest.new.train_toll(25)
Normal fare.
nil