码迷,mamicode.com
首页 > 其他好文 > 详细

ruby类名之间<,<=方法

时间:2014-09-23 18:57:45      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:io   ar   div   sp   on   c   ad   ef   r   

有时候看源码的时候看到类名之间存在<.<=操作,顿时一头雾水,类名之间也可以比较吗?查了下api,豁然开朗

Class的父类是Module,Module.methods.grep(/</)

 

会得到匹配的结果集:[:<=>,:<,:<=]

e.g

mod < other → true, false, or nil

Returns true if mod is a subclass of other. Returns nil if there’s no relationship between the two. (Think of the relationship in terms of the class definition: “class A<B” implies “A<B”).

mod <= other → true, false, or nil

Returns true if mod is a subclass of other or is the same as other. Returns nil if there’s no relationship between the two. (Think of the relationship in terms of the class definition: “class A<B” implies “A<B”).

 

ruby类名之间<,<=方法

标签:io   ar   div   sp   on   c   ad   ef   r   

原文地址:http://www.cnblogs.com/timsheng/p/3988886.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!