欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用isinstance()来判断对象类型

程序员文章站 2024-03-17 18:19:22
...

在Python中判断对象的类型可以使用 type()isinstance() 来判断对象的类型。但在继承类中,type() 存在无法判断实例对象也属于父类的的情况。

有类A和类B, B继续A的情况:

class A:
    pass

class B(A):
    pass

b = B()

使用 isinstance() 情况:

isinstance(b, B)
> True

isinstance(b, A)
> True

使用 type() 情况:

type(b)
> __main__.B

type(b) is B
> True

type(b) is A
> False

可以看到,使用 type() 来判断 b 的类型是不是 A 的结果是 False