Python getattr()函数使用方法代码实例
作者:yaominghui 时间:2022-03-04 03:30:51
getatter()通过方法名字符串调用方法,这个方法最主要的作用就是实现反射机制,也就是说可以通过字符串获取方法实例,这样就可以把一个类可能要调用的方法放到配置文件里,需要的时候进行动态加载。
1: 可以从类中获取属性和函数
新建test.py文件,代码如下:
# encoding:utf-8
import sys
class GetText():
def __init__(self):
pass
@staticmethod
def A():
print("this is a staticmethod function")
def B(self):
print("this is a func")
c = "cc desc"
if __name__ == '__main__':
print(sys.modules[__name__]) # <module '__main__' from 'D:/脚本项目/lianxi/clazz/test.py'>
print(GetText) # <class '__main__.GetText'>
# 获取函数
print(getattr(GetText, "A")) # <function GetText.A at 0x00000283C2B75798>
# 获取函数返回值
getattr(GetText, "A")() # this is a staticmethod function
getattr(GetText(), "A")() # this is a staticmethod function
print(getattr(GetText, "B")) # <function GetText.B at 0x000001371BF55798>
# 非静态方法不可用
# getattr(GetText, "B")()
getattr(GetText(), "B")() # this is a func
print(getattr(GetText, "c")) # cc desc
print(getattr(GetText(), "c")) # cc desc
2:从模块中获取类(通过类名字符串得到类对象)
新建test1.py,代码如下:
#encoding:utf-8
import sys
import test
print(sys.modules[__name__])
# 从模块中获取类对象
class_name = getattr(test, "GetText")
print(class_name) # <class 'test.GetText'>
# 调用类的属性和函数
print(getattr(class_name, "A")) # <function GetText.A at 0x000001D637365678>
# 获取函数返回值
getattr(class_name, "A")() # this is a staticmethod function
getattr(class_name(), "A")() # this is a staticmethod function
print(getattr(class_name(), "B")) # <bound method GetText.B of <test.GetText object at 0x0000022D3B9EE348>>
# getattr(class_name, "B")() 非静态方法不可用
getattr(class_name(), "B")() # this is a func
# 获取属性值
print(getattr(class_name, "c")) # cc desc
print(getattr(class_name(), "c")) # cc desc
标签:Python,getattr,函数
0
投稿
猜你喜欢
Django 多对多字段的更新和插入数据实例
2022-09-11 01:17:04
golang常用库之操作数据库的orm框架-gorm基本使用详解
2024-01-28 21:22:19
python pandas 时间日期的处理实现
2021-09-05 02:38:07
Python2.7环境Flask框架安装简明教程【已测试】
2023-12-17 11:59:42
Python 爬虫的工具列表大全
2023-03-29 06:27:57
Django实现分页功能
2023-04-04 11:00:56
Python2.6版本中实现字典推导 PEP 274(Dict Comprehensions)
2022-04-13 02:53:50
Python可变与不可变数据和深拷贝与浅拷贝
2022-06-05 21:14:51
Java操作MongoDB数据库方法详解
2024-01-19 11:37:38
TensorFlow如何实现反向传播
2023-07-04 08:44:36
Python入门_学会创建并调用函数的方法
2023-10-14 17:12:22
2008农历新年各大网站Logo秀
2008-02-11 16:33:00
zabbix进行数据库备份以及表分区的方法
2024-01-16 13:01:46
详解前端自动化工具gulp自动添加版本号
2023-08-09 14:48:41
瞬间的设计 I
2009-12-25 18:54:00
mysql4.1以上版本连接时出现Client does not support authentication protocol问题解决办法
2023-11-18 06:10:15
Python实现Kerberos用户的增删改查操作
2023-07-29 09:39:52
xhtml有哪些块级元素
2009-12-06 11:58:00
python+django+sql学生信息管理后台开发
2021-10-09 11:20:26
python Shapely使用指南详解
2022-11-01 23:38:04