python 类对象和实例对象动态添加方法

2018-06-18 00:12:51来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

 1 class Person():
 2     def __init__(self, name):
 3         self.name = name
 4 
 5 
 6 def print_name(self):
 7     print(self.name)
 8 
 9 p = Person('Li')
10 import types
11 p.print_name = types.MethodType(print_name, p)    # 绑定函数到对象
12 p.print_name()
13 
14 
15 @staticmethod
16 def print_abc():
17     print('abc')
18 
19 Person.print_abc = print_abc
20 Person.print_abc()
21 
22 
23 @classmethod
24 def print_123(cls):
25     print('123')
26 
27 Person.print_123 = print_123
28 Person.print_123()

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:022configparser模块

下一篇:015迭代器