迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > Python >

Python 中检查对象是否是类的实例

作者:迹忆客 最近更新:2023/01/23 浏览次数:

使用 isinstance() 函数检查对象是否是类的实例。 isinstance() 函数可以传递一个对象和一个或多个类,如果该对象是至少一个所提供类的实例,则返回 True

class Employee():
    pass


emp1 = Employee()

# ✅ 检查对象是否是特定类的实例
if isinstance(emp1, Employee):
    # 👇️ this runs
    print('The object is an instance of the class')
else:
    print('The object is NOT an instance of the class')

# -----------------------------------

# ✅ 检查对象是否是多个类之一的实例

if isinstance(emp1, (str, list, int, Employee)):
    print('The object is an instance of one of the classes')
else:
    print('The object is NOT an instance of one of the classes')

如果传入的对象是传入类的实例或子类,则 isinstance 函数返回 True

class Employee():
    pass


emp1 = Employee()

print(isinstance(emp1, Employee))  # 👉️ True
print(isinstance(int, Employee))  # 👉️ False

isinstance() 函数也可以传递一个类元组。

如果对象是任何指定类的实例,则该函数返回 True。

class Employee():
    pass


emp1 = Employee()

print(
    isinstance(emp1, (str, list, int, Employee))
)  # 👉️ True

print(
    isinstance(emp1, (str, list, int))
)  # 👉️ False

如果我们需要检查一个对象是否是任何类的实例,请检查该对象是否具有 __class__ 属性。

class Employee():
    pass


emp1 = Employee()

print(hasattr(emp1, '__class__'))  # 👉️ True

print(hasattr(int, '__class__'))  # 👉️ True

每个对象都有一个类,可以使用对象的 __class__ 属性访问该类。

class Employee():
    pass


emp1 = Employee()

print(emp1.__class__)  # 👉️ <class '__main__.Employee'>

print(int.__class__)  # 👉️ <class 'type'>

如果对象没有 __class__ 属性,则它不会实例化任何类。

如果我们需要检查一个对象是否是一个类,请使用 inspect.isclass() 方法。

from inspect import isclass


class Employee():
    pass


emp1 = Employee()

print(isclass(Employee))  # 👉️ True
print(isclass(emp1))  # 👉️ False

如果提供的对象是类,则 inspect.isclass 方法返回 True

对于内置类和用户定义类,该方法返回 True

检查变量是否是 Python 列表中任何类的实例

检查变量是否是列表中任何类的实例:

  1. 使用 tuple() 类将列表转换为元组。
  2. 使用 isinstance() 函数检查变量是否是任何类的实例。
  3. 如果满足条件,instance() 函数将返回 True
class Employee():
    pass


a_list = [int, float, str, Employee]

emp1 = Employee()

if isinstance(emp1, tuple(a_list)):
    # 👇️ this runs
    print('The variable is an instance of one of the classes in the list')
else:
    print('The variable is NOT an instance of any of the classes in the list')


# 👇️ True
print(
    isinstance(
        emp1,
        (int, float, str, Employee)
    )
)

我们使用 tuple() 类将类列表转换为元组。

如果传入的对象是传入类的实例或子类,则 isinstance 函数返回 True

class Employee():
    pass


emp1 = Employee()

print(isinstance(emp1, Employee))  # 👉️ True
print(isinstance(float, Employee))  # 👉️ False

isinstance() 函数也可以传递一个类元组。

如果对象是任何指定类的实例,则该函数返回 True。

class Employee():
    pass


emp1 = Employee()

# 👇️ True
print(
    isinstance(
        emp1,
        (int, float, str, Employee)
    )
)

# 👇️ False
print(
    isinstance(
        emp1,
        (int, float, str)
    )
)

如果变量不是元组中任何类的实例,则返回 False

如果我们将类存储在列表中,请使用 tuple() 类将列表转换为元组。

class Employee():
    pass


a_list = [int, float, str, Employee]

emp1 = Employee()

# 👇️ True
print(
    isinstance(
        emp1,
        tuple(a_list)
    )
)

元组类接受一个可迭代对象并返回一个 tuple 对象。

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Python for 循环中的下一项

发布时间:2023/04/26 浏览次数:179 分类:Python

本文讨论了 Python 中的 for 循环以及如何通过使用 for 循环和示例来跳过列表的第一个元素。

Python While 循环用户输入

发布时间:2023/04/26 浏览次数:148 分类:Python

我们可以在 while 循环中使用 input() 函数来输入数据,直到在 Python 中满足某个条件。

Python 中的整数规划

发布时间:2023/04/26 浏览次数:193 分类:Python

本文介绍了整数规划和可用于解决混合整数规划问题的 Python 工具。

在 Python 中将整数转换为罗马数字

发布时间:2023/04/26 浏览次数:87 分类:Python

本篇文章将介绍在 Python 中将整数转换为罗马数字。以下是一个 Python 程序的实现,它将给定的整数转换为其等效的罗马数字。

在 Python 中将罗马数字转换为整数

发布时间:2023/04/26 浏览次数:144 分类:Python

本文讨论如何在 Python 中将罗马数字转换为整数。 我们将使用 Python if 语句来执行此操作。 我们还将探讨在 Python 中将罗马数字更改为整数的更多方法。

在 Python 中读取 gzip 文件

发布时间:2023/04/26 浏览次数:70 分类:Python

本篇文章强调了压缩文件的重要性,并演示了如何在 Python 中使用 gzip 进行压缩和解压缩。

在 Python 中锁定文件

发布时间:2023/04/26 浏览次数:141 分类:Python

本文解释了为什么在 Python 中锁定文件很重要。 这讨论了当两个进程在没有锁的情况下与共享资源交互时会发生什么的示例,为什么在放置锁之前知道文件状态很重要,等等

在 Python 中将 PDF 转换为文本

发布时间:2023/04/26 浏览次数:196 分类:Python

在本教程中,我们将学习如何使用 Python 使用 PyPDF2、Aspose 和 PDFminer 将 PDF 文档转换为文本文件。

在 Python 中创建临时文件

发布时间:2023/04/26 浏览次数:53 分类:Python

本文讲解了tempfile库函数的四个子函数:TemporaryFile、NamedTemporaryFile、mkstemp、TemporaryDirectory。 每个部分都提供了适当的程序,以简化对概念的理解。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便