python 动态调用函数实例解析
作者:百变小超 时间:2021-03-11 09:31:41
1. 根据字符串名称 动态调用 python文件内的方法eval("function_name")(参数)
2. 根据字符串 动态调用类中的静态方法,getattr(ClassName,"function_name")(参数)
3. apply(functoin_name,parameters) 这个function_name不是字符串,而是函数对象本身;parameters是参数,类似(a,b,...)这样的格式
4. 当函数不确定参数的数目时候,采用 一个 * 或两个** 他们的用法是有讲究的。
下面的例子是,定义了一个函数列表字典,字典中保存有函数对象和函数的参数,可以实现动态为字典添加执行的函数,最后一起执行
from collections import OrderedDict
class ComponentCheck:
def __init__(self, data_dir):
self.data_dir = data_dir
self._extend_function_dic = OrderedDict({})
def add_extend_function(self, function_name, *parameters):
self._extend_function_dic[function_name] = parameters
def _check_extend_function(self):
for function_name, parameters in self._extend_function_dic.iteritems():
if not apply(function_name, parameters):
return False
return True
class CheckFunctions:
def __init__(self):
pass
def tollcost_check(data_path):
toll_cost_path = os.path.join(data_path, Importer.DT_KOR_TOLL_COST)
tollcost_component = ComponentCheck(toll_cost_path)
tollcost_component.add_extend_function(tollcost_component.check_file_pattern_list_match, CheckFunctions.TOLL_COST_FILENAME_PATTERN)
return tollcost_component
@staticmethod
def speed_camera_check(data_path):
speed_camera_path = os.path.join(data_path, Importer.DT_SAFETY_CAMERA)
speed_camera_component = ComponentCheck(speed_camera_path)
speed_camera_component.add_extend_function(speed_camera_component.check_not_exist_empty_directory)
return speed_camera_component
来源:https://www.cnblogs.com/dasheng-maritime/p/7833658.html
标签:python,动态,调用,函数
0
投稿
猜你喜欢
大家一起来折磨浏览器吧!(好玩的东东)
2010-02-07 12:40:00
通过ASP.net实现flash对数据库的访问
2024-01-14 17:04:30
mysql第一次安装成功后初始化密码操作步骤
2024-01-19 22:20:45
sql 判断数据库,表,存储过程等是否存在的代码
2024-01-18 21:59:29
nodejs 的 session 简单使用
2024-05-11 09:51:19
python读取json文件并将数据插入到mongodb的方法
2021-03-22 20:30:22
JavaScript实现隐藏省略文字效果的方法
2024-03-18 20:35:29
Python3 利用face_recognition实现人脸识别的方法
2023-11-05 05:08:02
SQL Agent服务无法启动的解决方法
2024-01-21 23:10:21
Python爬虫爬取百度搜索内容代码实例
2022-06-23 02:21:11
PDO::inTransaction讲解
2023-06-06 08:32:27
深入了解如何基于Python读写Kafka
2021-02-13 09:33:09
Python prettytable模块应用详解
2022-05-11 13:10:15
Mac安装软件时提示已损坏的完美解决方法
2022-12-07 03:11:21
Python爬虫+Tkinter制作一个翻译软件的示例
2023-12-14 07:22:42
asp如何计算下载一个文件需要多长时间?
2009-11-25 20:17:00
python geopandas读取、创建shapefile文件的方法
2022-09-23 16:57:19
完美解决mysql启动后随即关闭的问题(ibdata1文件损坏导致)
2024-01-12 14:43:03
python笔记之使用fillna()填充缺失值
2023-12-22 19:53:49
38个Asp内置函数介绍
2008-11-27 16:25:00