type与instance区别
Posted konglingxi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了type与instance区别相关的知识,希望对你有一定的参考价值。
class Foo(object): pass class Bar(Foo): pass obj = Bar() # isinstance用于判断,对象是否是指定类或其派生类的实例 print(isinstance(obj,Foo)) #True print(isinstance(obj,Bar))#True #精确的判断对象是否是指定类的实例 print(type(obj) == Bar) #True print(type(obj) == Foo) #False
以上是关于type与instance区别的主要内容,如果未能解决你的问题,请参考以下文章
判断数据类型instance of type of object.prototype.tostring 区别