博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Day03 - Ruby比一比:Module的include与extend
阅读量:5814 次
发布时间:2019-06-18

本文共 2629 字,大约阅读时间需要 8 分钟。

前情提要

在第一天里,我们很激昂地用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 IThelp
p“I'm learning from others' IT articles on IThelp Website!”
end
end

class EveryoneLearnsRuby

def initialize(name)
@name = name
end
include Library
end

Ting = EveryoneLearnsRuby.new(“Ting”)

Ting.IThelp
You = EveryoneLearnsRuby.new(“You”)
You.IThlep
当然,使用类别(class)继承也有它的好处,

例如:在已有的功能基础上,再追加扩展本身已有功能。

(龙生龙、凤生凤;老鼠生的儿子会打洞!)

或是以相同名称的方法,重新定义,产生不同的效果。

(王老先生有块地,那王小弟长大后可以把王老先生的那块地拿去盖民宿。)

但模块(module)的include就像开外挂一样,让我们可以在这个星球上学会更多技能。

为了比较include与extend,我们把图书馆模块来稍加改写:

module Library

def IThelp
p“IThelp helps me!”
end
end

class NewbieLearnsRuby

include Library
end

NewbieLearnsRuby.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 IThelp
p“IThelp helps me!”
end
end

class NewbieLearnsRuby

include Library
end

class ExtendRuby

extend Library
end

NewbieLearnsRuby.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,就仿佛自己像写一本武侠小说一样,尽情地创造准备开始练功的新人物、新主角。

身为新手工程师,屏幕是我们的画布~键盘上的各个中英文字、数值、符号就是我们的颜料,

享受写程序+写文章的过程,愿我们都可以在人生画布上,挥洒、创造自己的新世界!

转载于:https://www.cnblogs.com/lannyQ-Q/p/10682167.html

你可能感兴趣的文章
DevOps 前世今生 | mPaaS 线上直播 CodeHub #1 回顾
查看>>
iOS 解决UITabelView刷新闪动
查看>>
让前端小姐姐愉快地开发表单
查看>>
Dubbo笔记(四)
查看>>
Web前端JQuery入门实战案例
查看>>
java B2B2C Springboot电子商城系统- SSO单点登录之OAuth2.0 登出流程(3)
查看>>
USB 通信原理
查看>>
7zZip zip RAR iOS
查看>>
date命令的详细用法!
查看>>
UiAutomator源码分析之UiAutomatorBridge框架
查看>>
python 开发之selenium
查看>>
Xcode3.2.5中找不到Mac OS X - Command Line Utility -...
查看>>
css的div垂直居中的方法,百分比div垂直居中
查看>>
如何理解EM算法
查看>>
nginx 域名跳转一例~~~(rewrite、proxy)
查看>>
linux用户家目录无损迁移到独立硬盘
查看>>
文件查找
查看>>
shell编程前言(一)
查看>>
5、centos7.*配置yum的EPEL源及其它源
查看>>
JSON前后台简单操作
查看>>