前情提要
在第一天里,我们很激昂地用Ruby的类别、物件、方法,写了开赛宣言!在第二天里,我们比较了方法与模块,比的过程中,发现模块多了包含(inclusion)与延伸(extension)。超级比一比类别Class模块Module
父类别superclass模块Module物件Object继承inheritance可继承不可继承()包含inclusion不可被包含可被包含*延伸extension不可延伸可被延伸*实例化instantiation可被实例化(instantiated)不可被实例化所以在第三天的文章里,进一步研究module中的inclusion和extension是必须的!Ruby经典面试题目#03
包含与延伸有什么不同?What's the Difference Between Include and Extend?还记得我们昨天举的例子:网络图书馆(模块)有很多知识(方法)让我们取用(include),让你与我都能够突破先天(继承)的限制,变成更加聪明灵活的IT人。
module Library
def IThelpp“I'm learning from others' IT articles on IThelp Website!”endendclass EveryoneLearnsRuby
def initialize(name)@name = nameendinclude LibraryendTing = EveryoneLearnsRuby.new(“Ting”)
Ting.IThelpYou = EveryoneLearnsRuby.new(“You”)You.IThlep当然,使用类别(class)继承也有它的好处,例如:在已有的功能基础上,再追加扩展本身已有功能。
(龙生龙、凤生凤;老鼠生的儿子会打洞!)或是以相同名称的方法,重新定义,产生不同的效果。
(王老先生有块地,那王小弟长大后可以把王老先生的那块地拿去盖民宿。)但模块(module)的include就像开外挂一样,让我们可以在这个星球上学会更多技能。
为了比较include与extend,我们把图书馆模块来稍加改写:
module Library
def IThelpp“IThelp helps me!”endendclass NewbieLearnsRuby
include LibraryendNewbieLearnsRuby.new.IThelp
#IThelp helps me!NewbieLearnsRuby.IThelp
#NoMethodError如果我们把NewbieLearnsRuby.new.IThelp误写成NewbieLearnsRuby.IThelp,就会NoMethodError出现错误。undefined method `IThelp' for NewbieLearnsRuby:Class(NoMethodError)
奇怪,为什么会这样呢?我们回到改写前的图书馆例子:我先宣告(new)一个新物件You,
让「You」这个变数名字指向EveryoneLearnsRuby.new(“You”)You = EveryoneLearnsRuby.new(“You”)
You.IThlep所以刚刚的NewbieLearnsRuby.new.IThelp其实是以下的简化:You = NewbieLearnsRuby.new
You.IThelp# [NewbieLearnsRuby.new].IThelp [中括号内的变数就是You!]这就是我们为什么不能漏掉.new的原因。那,如果改写成extend的代码,会变成如何呢?
module Library
def IThelpp“IThelp helps me!”endendclass NewbieLearnsRuby
include Libraryendclass ExtendRuby
extend LibraryendNewbieLearnsRuby.new.IThelp
# IThelp helps me!ExtendRuby.IThelp
# IThelp helps me!由以上可知,include代表Newbie类别学Ruby时需要new一个新的物件实体,然后才能使用方法。但extend不用,在Extend类别中使用它,可以直接把方法拿过来用()。ExtendRuby.IThelp
# IThelp helps me!ExtendRuby.new.IThelp
# NoMethodError同样的,想进一步了解为什么输入ExtendRuby.new.IThelp也是NoMethodError。接下来我们要拿关键字the difference between include and extend in ruby去请教Google大神:Now that we know the difference between an instance method and a class method,let's cover the difference between include and extend in regards to modules.Include is for adding methods to an instance of a class and extend is for adding class methods.出处
为了抽丝剥茧这段话的含义,这里的实体方法instance method和类别方法class method将会成为我们下一篇文章的重点啰!第三天感想
写文章真的很有趣!当我写出NewbieLearnsRuby这种名称的class,就仿佛自己像写一本武侠小说一样,尽情地创造准备开始练功的新人物、新主角。身为新手工程师,屏幕是我们的画布~键盘上的各个中英文字、数值、符号就是我们的颜料,
享受写程序+写文章的过程,愿我们都可以在人生画布上,挥洒、创造自己的新世界!