本文簡要介紹ruby語言中 Object.is_a?
的用法。
用法
is_a?(class) → true or false
別名:kind_of?
如果 class
是 obj
的類,或者 class
是 obj
的超類之一或 obj
中包含的模塊,則返回 true
。
module M; end
class A
include M
end
class B < A; end
class C < B; end
b = B.new
b.is_a? A #=> true
b.is_a? B #=> true
b.is_a? C #=> false
b.is_a? M #=> true
b.kind_of? A #=> true
b.kind_of? B #=> true
b.kind_of? C #=> false
b.kind_of? M #=> true
相關用法
- Ruby Object.instance_variable_get用法及代碼示例
- Ruby Object.inspect用法及代碼示例
- Ruby Object.instance_of?用法及代碼示例
- Ruby Object.instance_variable_defined?用法及代碼示例
- Ruby Object.itself用法及代碼示例
- Ruby Object.instance_variable_set用法及代碼示例
- Ruby Object.instance_variables用法及代碼示例
- Ruby Object.display用法及代碼示例
- Ruby Object.remove_instance_variable用法及代碼示例
- Ruby Object.define_singleton_method用法及代碼示例
- Ruby Object.methods用法及代碼示例
- Ruby Object.public_send用法及代碼示例
- Ruby Object.xmp用法及代碼示例
- Ruby Object.singleton_methods用法及代碼示例
- Ruby Object.enum_for用法及代碼示例
- Ruby Object.freeze用法及代碼示例
- Ruby Object.obj ==用法及代碼示例
- Ruby Object.method用法及代碼示例
- Ruby Object.DelegateClass用法及代碼示例
- Ruby Object.nil?用法及代碼示例
- Ruby Object.singleton_class用法及代碼示例
- Ruby Object.kind_of?用法及代碼示例
- Ruby Object.send用法及代碼示例
- Ruby Object.to_enum用法及代碼示例
- Ruby Object.__id__用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Object.is_a?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。