Day04 -玩弄Ruby的方法:instance method与class method
前情提要
在第三天时,我们解说了如何在class里用include与extend,去使用module的method。
Include is for adding methods to an instance of a class.
Extend is for adding class methods.(出处)
…Also,it is sometimes ok to use“include”to add both instance and class methods.#这句话比较进阶,之后再研究:)
并透过图书馆模块的代码明白这段话的含义:
include是把类别中的物件实体加上方法;
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!
话不多说,进入今天的章节(xcsjbj):
Ruby经典面试题目#04
解释实体方法与类别方法Explain instance method and class method.
类别方法class method
为了了解类别方法,我们今天要建立新的类别class:铁人赛名单IronmanList,让这个class利用find方法,以传入的id值顺利找到某位铁人赛的参赛者:
class IronmanList
class << self
def find(id)
p“finding Ironman ID: #{id}”
end
end
end
IronmanList.find(1)
# finding Ironman ID: 1
当传入1给id,会使IronmanList这个类别,印出finding Ironman ID: 1。
以上的程序代表,当接收者不是物件object,而是类别class本身,就是一个类别方法class method。
这边的<<指的是push方法,用在class method,意思是将self method push到类别class里。
铁人赛名单class也可写为:
class IronmanList
#class << self
def self.find(id)#在这里的self is a class Method
p“finding Ironman ID: #{id}”
end
#end
end
IronmanList.find(1)
我们把class << self…end这部分都用注释消掉,直接使用self这个class method,让self.find(id)与之前呈现出一样的结果!
使用class method的情况
当我们要写class method时,如果此方法并不会和某个特定的实体变数绑在一起,就该使用类别方法!
实体方法(instance method)
把铁人赛名单类别扩充一下,除了find方法,还有ironmanwinner方法:
class IronmanList
def self.find(id)
p“finding Ironman ID: #{id}”
end
def ironmanwinner
p“I've got a trophy!”
end
end
IronmanList.find(1)#这是类别方法
IronmanList.new.ironmanwinner #这是实体方法
结果会印出:
finding Ironman ID: 1
I've got a trophy!
使用instance method的情况
如果你需要将实体方法,运用在某个客制化的实体。
This is often when the functionality concerns the identity of the instance such as calling properties on the object,or invoking behaviour.出处
如同铁人赛的赢家不会只有一个名额,只要能自我挑战成功,都能练成铁人:)。
因此我们可以再new更多的物件,尽情使用这个ironmanwinner实例方法(xyyfl):
class IronmanList
def self.find(id)
p“finding Ironman ID: #{id}”
end
def ironmanwinner
p“I've got a trophy!”
end
end
# IronmanList.find(1)
Ting = IronmanList.new
Ting.ironmanwinner
Bater = IronmanList.new
Bater.ironmanwinner
结果印出:
“I've got a trophy!”
“I've got a trophy!”
例子不会只有一种,解释方法更不会只有一种。我们除了用自己写的代码理解概念,近一步拿关键字instance method class method ruby去请教Google大神透过网络这座大图书馆,其他工程师们的博客文章、透过各种文字说明与举例加深我们的印象。看到排名第一的解释写着:
Class can use methods from three areas:
Instances of Class have access to the instance methods defined in Module
Instances of class can call methods that are defined as instance methods in their class.
Or instances can call a singleton method of a class object.出处
类别可以使用三种方法:
类别的物件实体,去存取模块里的实体方法。(例如:第二天在LibraryModule所写的的IThelp Method)
类别的物件实体,用自己类别里定义的实体方法。(例如:本日第四天的Ironmanlist Method)
类别可以呼叫类别物件的单例方法(singleton method)。(例如:本日第四天的IronmanListClass的self.find(id)Method)
这里又发现一个新名词了:singleton method,这将成为我们下一篇的素材呢!
=欲知详情,下回分解!=
Day04 -玩弄Ruby的方法:instance method与class method的更多相关文章
- 雷林鹏分享:Ruby CGI方法
Ruby CGI方法 以下为CGI类的方法列表: 序号方法描述 1CGI::new([ level="query"]) 创建 CGI 对象.query可以是以下值: query: ...
- Bound Method and Unbound Method - 绑定方法 与 非绑定方法
Bound Method and Unbound Method 通常有两种方法对类的方法(instance.method)/属性(class.attribute)进行引用, 一种称做 Bound Me ...
- [Python] Python 之 function, unbound method 和 bound method
首先看一下以下示例.(Python 2.7) #!/usr/bin/env python # -*- coding: utf-8 -*- class C(object): def foo(self): ...
- 关于.ToList(): LINQ to Entities does not recognize the method ‘xxx’ method, and this method cannot be translated into a store expression.
LINQ to Entities works by translating LINQ queries to SQL queries, then executing the resulting quer ...
- java代码中init method和destroy method的三种使用方式
在java的实际开发过程中,我们可能常常需要使用到init method和destroy method,比如初始化一个对象(bean)后立即初始化(加载)一些数据,在销毁一个对象之前进行垃圾回收等等. ...
- Modified Least Square Method and Ransan Method to Fit Circle from Data
In OpenCv, it only provide the function fitEllipse to fit Ellipse, but doesn't provide function to f ...
- Invalid character found in method name. HTTP method names must be tokens
o.apache.coyote.http11.Http11Processor : Error parsing HTTP request header Note: further occurrenc ...
- SpringBoot:Invalid character found in method name. HTTP method names must be tokens
问题背景 关于SpringBoot应用挂了很久之后,会发生Invalid character found in method name. HTTP method names must be token ...
- tomcat 启动报错 Invalid character found in method name. HTTP method names must be tokens
解决:Invalid character found in method name. HTTP method names must be tokens 阿里云上弄了一个tomcat,经常半夜发送崩 ...
随机推荐
- 支持向量机(Support Vector Machine,SVM)
SVM: 1. 线性与非线性 核函数: 2. 与神经网络关系 置信区间结构: 3. 训练方法: 4.SVM light,LS-SVM: 5. VC维 u-SVC 与 c-SVC 区别? 除参数不同外, ...
- Xshell5 提示要继续使用此程序,您必须应用最新的更新或使用新版本
Xshell5 提示要继续使用此程序,您必须应用最新的更新或使用新版本 目录 问题描述 修改系统时间 安装新版本 下载 安装 回到顶部 问题描述 今天上线一个服务,上完准备看下OPS的发布结果,就 ...
- php_screw安装,使用
安装步骤:1. 下载源码:wget http://nchc.dl.sourceforge.net/project/php-screw/php-screw/1.5/php_screw-1.5.tar.g ...
- 借助ssh隧道和中间主机,使本地主机可以直连远程主机
本地主机: localhost 中间主机: kickstart服务器 10.164.229.162 远程主机: fuel 服务器 192.168.0.11 背景:正常情况下,本地不能直 ...
- ReSharper 自动选中
想让智能提示默认选中第一个,步骤:ReSharper->Options->如下图
- 给datagridview的下拉框添加valueChange事件
修改datagridview的EditMode属性为EdutOnEnter,否则需要点2次以上才出现下拉框 1.给DataGridView添加EditingControlShowing事件: 2.编辑 ...
- 【转录组入门】3:了解fastq测序数据
操作:需要用安装好的sratoolkit把sra文件转换为fastq格式的测序文件,并且用fastqc软件测试测序文件的质量 作业:理解测序reads,GC含量,质量值,接头,index,fastqc ...
- projective dynamics的global solve中 引入拉格朗日乘子的简化方法
想了一下使用乘子法还是可行的/做一个简化.在约束C(xn) 在C(xn-1)处线性展开 (n是时间步骤)具体推导留作备份等有时间了去代码实现 3式是一个典型的LCP问题 用PGS就行 左边的系数部分依 ...
- java+Selenium+TestNg搭建自动化测试架构(3)实现POM(page+Object+modal)
1.Page Object是Selenium自动化测试项目开发实践的最佳设计模式之一,通过对界面元素的封装减少冗余代码,同时在后期维护中,若元素定位发生变化,只需要调整页面元素封装的代码,提高测试用例 ...
- 【亲测】Java 接口自动化步骤
GET请求(Maven) 一. src/main/java 1.[地址--HOST]创建并设置配置文件(后缀名.properties的文本文件):存放接口请求的host地址 2.[地址]TestBas ...