Ruby的method_missing

简介: 用过ruby人对method_missing肯定不陌生,通常我们利用这一神技来实现调用不存在的方法,以便进行回调,利用它可以很方便的实现我们自己的DSL。 在学习method_missing之前,先理解下ruby方法调用过程 当ruby对象执行某一方法时,他需要找到这个方法,其查找流程如下: 1、查

Ruby的method_missing


用过ruby人对method_missing肯定不陌生,通常我们利用这一神技来实现调用不存在的方法,以便进行回调,利用它可以很方便的实现我们自己的DSL。


在学习method_missing之前,先理解下ruby方法调用过程


当ruby对象执行某一方法时,他需要找到这个方法,其查找流程如下:


1、查询当前对象的实例方法


2、查找当前对象所有模块,看是否有该方法


3、查找该对象的父类及父类模块(就是找他爹,他爹没有,再找它爷。。。)


4、如果这个对象很不幸没爹,那就直接到Object中找


5、到BasicObject中查找


如果还没找到,调用内核的method_missing方法,最终丢出NoMethodError


由上可知,method_missing是方法调用的最后一道防线,我们可以把method_missing理解为“方法找不到时,该做什么”


所以,我们可以在方法查询的任何位置通过重写method_missing的方式告诉ruby,“哥们,这方法如果没找到,就这样做。。。”


一、方法代理


方法代理使用的比较多的,通过method_missing让当前对象使用另外一个类的方法 举例:


class A
  def do_this
    p "this is class A" 
  end
end
class B
  def initialize
    @proxy = A.new 
  end
  def method_missing(method_name, *args, &block) 
    p "this is class B"
    @proxy.do_this
  end 
end
b = B.new b.do_this


b在查找do_this方法时,由于找不到,所以进入我们重写的method_missing中,在这里我们 通过class的实例对象proxy来执行A中的do_this方法。


二、编写DSL


通过上面的例子,可以知道method_missing可以对不存在的方法进行拦截,然后做我们想做 的事,这就为DSL的编写提供了很大的便利,我们在method_missing中对我们要执行的方法 进行解析,判断是不是满足我们所定义的语法等等,然后进行我们需要的操作,很多自动化测试框架就是使用这种方式的,通过定义自己的DSL可以让代码更具业务化。

相关文章
|
5月前
|
开发者 Python
【Python】已解决:(Python3中pip无法安装urllib报错问题) ERROR: Could not find a version that satisfies the requireme
【Python】已解决:(Python3中pip无法安装urllib报错问题) ERROR: Could not find a version that satisfies the requireme
380 0
【Python】已解决:(Python3中pip无法安装urllib报错问题) ERROR: Could not find a version that satisfies the requireme
|
5月前
|
Java 开发工具 git
【Python】已解决:ERROR: No matching distribution found for JPype1
【Python】已解决:ERROR: No matching distribution found for JPype1
362 0
|
5月前
|
Java Python
【Python】已解决:ERROR: No matching distribution found for JPype
【Python】已解决:ERROR: No matching distribution found for JPype
436 0
|
Python
Python常见问题 - pip报错 ValueError: Unable to find resource t64.exe in package pip._vendor.distlib
Python常见问题 - pip报错 ValueError: Unable to find resource t64.exe in package pip._vendor.distlib
439 0
Python常见问题 - pip报错 ValueError: Unable to find resource t64.exe in package pip._vendor.distlib
|
5月前
|
开发者 Python
【Python】已完美解决:ERROR: Could not find a version that satisfies the requirement re
【Python】已完美解决:ERROR: Could not find a version that satisfies the requirement re
1222 0
|
5月前
|
开发者 Python
【Python】已解决:ERROR: Could not find a version that satisfies the requirement easyocr (from versions: n
【Python】已解决:ERROR: Could not find a version that satisfies the requirement easyocr (from versions: n
170 0
|
7月前
|
计算机视觉 Python
ERROR: Could not build wheels for opencv-python which use PEP 517 and cannot be installed directly
ERROR: Could not build wheels for opencv-python which use PEP 517 and cannot be installed directly
165 2
python离线安装环境 解决 ERROR: Could not find a version that satisfies the requirement xxx 以及winError[10061]
python离线安装环境 解决 ERROR: Could not find a version that satisfies the requirement xxx 以及winError[10061]
编译OpenJDK8:configure: error: Could not find all X11 headers
编译OpenJDK8:configure: error: Could not find all X11 headers
164 0

热门文章

最新文章