现在有一个需求,就是python中使用字符串动态定义一个类,并随后使用其中的方法。
# /test.py
# coding=utf-8
content = '''
class MyClass:
def __init__(self):
self.name = None
self.age = None
def do():
return MyClass()
'''
exec content
print do()
# 或者最后一句话改成exec("print do()")
直接运行这段代码是没有问题的,得到了输出<__main__.MyClass instance at 0x000000000243EB88>
。
首先定义另一个actor.py
文件:
# /actor.py
# coding=utf-8
def execute(content):
exec content
return do()
然后定义test.py
文件:
# /test.py
# coding=utf-8
import actor
content = """
class MyClass:
def __init__(self):
self.name = None
self.age = None
def do():
return MyClass()
"""
print actor.execute(content)
运行test.py
文件,会出现NameError: global name 'MyClass' is not defined
。
我的需求就是,定义一个模块,在这个模块的函数中执行一段指定的字符串,动态定义一个类,并且需要调用这个类,现在遇到的问题如上所示,求助啊。。。
首先「exec」是不被推薦的方法,因為它會帶來一些問題:
一些基於__module__屬性的模組會失敗,例如pickle,inspect,pydoc等
記憶體洩漏
namespace和module shutdown behavior issue
關於這幾點問題的詳細描述,可以參考:http://lucumr.pocoo.org/2011/...
既然你硬要這麼做的話,下面程式碼可以提供一點參考:
tester.py
actor.py
動態建立一個類別
你會考慮用exec, 可能是沒接觸到python的高階特性