本文介绍了红宝石:种类?与 instance_of 对比?vs. is_a?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有什么区别?我什么时候应该使用哪个?为什么有这么多?
What is the difference? When should I use which? Why are there so many of them?
推荐答案
kind_of?
和 is_a?
是同义词.
instance_of?
与其他两个不同,它仅在对象是该类的实例而非子类时才返回 true
.
instance_of?
is different from the other two in that it only returns true
if the object is an instance of that exact class, not a subclass.
示例:
"你好".is_a?Object
和"hello".kind_of?Object
返回true
因为"hello"
是String
而String
是对象代码>.
- 但是
"hello".instance_of?对象
返回false
.
"hello".is_a? Object
and"hello".kind_of? Object
returntrue
because"hello"
is aString
andString
is a subclass ofObject
.- However
"hello".instance_of? Object
returnsfalse
.
这篇关于红宝石:种类?与 instance_of 对比?vs. is_a?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!