脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python反射用法实例简析

Python反射用法实例简析

2020-12-28 00:13zjgtan Python

这篇文章主要介绍了Python反射用法,结合实例形式简单分析了Python反射的概念、原理及使用方法,需要的朋友可以参考下

本文实例讲述了Python反射用法。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
class Person:
  def __init__(self):
    self.name = "zjgtan"
  def getName(self):
    return self.name

反射的简单含义:

通过类名获得类的实例对象

通过方法名得到方法,实现调用

反射方法一:

?
1
2
3
from person import Person
theObj = globals()["Person"]()
print theObj.getName()

反射方法二:

?
1
2
3
module = __import__("person")
theObj = getattr(module, "Person")()
print theObj.getName()

希望本文所述对大家Python程序设计有所帮助。

原文链接:https://www.cnblogs.com/zjgtan/p/3539808.html

延伸 · 阅读

精彩推荐