扩展(特别是添加新方法,而不是更改现有方法)类的另一种方法,甚至是内置类,是使用预处理器添加扩展 Python 本身范围之外/之上的能力,将扩展转换为在 Python 真正看到它之前的正常 Python 语法。
例如,我这样做是为了扩展 Python 2 的str()
类。str()
是一个特别有趣的目标,因为隐式链接到引用的数据,例如'this'
和'that'
。
这是一些扩展代码,其中唯一添加的非 Python 语法是extend:testDottedQuad
位:
extend:testDottedQuad
def testDottedQuad(strObject):
if not isinstance(strObject, basestring): return False
listStrings = strObject.split('.')
if len(listStrings) != 4: return False
for strNum in listStrings:
try: val = int(strNum)
except: return False
if val < 0: return False
if val > 255: return False
return True
之后我可以编写馈送到预处理器的代码:
if '192.168.1.100'.testDottedQuad():
doSomething()
dq = '216.126.621.5'
if not dq.testDottedQuad():
throwWarning();
dqt = ''.join(['127','.','0','.','0','.','1']).testDottedQuad()
if dqt:
print 'well, that was fun'
预处理器吃掉它,吐出没有猴子补丁的普通 Python,Python 做了我打算做的事情。
正如 ac 预处理器为 c 添加功能一样,Python 预处理器也可以为 Python 添加功能。
我的预处理器实现对于堆栈溢出答案来说太大了,但对于那些可能感兴趣的人,它在GitHub 上。