当前位置: 移动技术网 > IT编程>脚本编程>Python > 巧用Python装饰器 免去调用父类构造函数的麻烦

巧用Python装饰器 免去调用父类构造函数的麻烦

2019年04月04日  | 移动技术网IT编程  | 我要评论

中国移动 山东,姬川梨乃,平板计算机

先看一段代码:

复制代码 代码如下:

class t1(threading.thread):
def __init__(self, a, b, c):
super(t1, self).__init__()
self.a = a
self.b = b
self.c = c

def run(self):
print self.a, self.b, self.c

代码定义了一个继承自threading.thread的class,看这句

super(t1, self).__init__()

也有些人喜欢这么写

threading.thread.__init__(self)

当然作用都是调用父类的构造函数。

写了这么久的python代码,每次写到这都有重复造轮子的感觉。刚才突然想到装饰器这个好东西,试着写了个autoinitclass来帮助pythoner脱离苦海,免去手动调用父类构造函数的麻烦。
代码如下:
复制代码 代码如下:

def autoinitclass(oldclass):
superclass = oldclass.mro()[1]
class newclass(oldclass):
def __init__(*args):
self = args[0]
superclass.__init__(self)
apply(oldclass.__init__, args)
return newclass

使用autoinitclass装饰器构造新类:

复制代码 代码如下:

@autoinitclass
class t2(threading.thread):
def __init__(self, a, b, c):
#不用再写super(t2, self).__init__()
self.a = a
self.b = b
self.c = c

def run(self):
print self.a, self.b, self.c

本文来自: itianda's blog ,转载请注明原文出处

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网