实例如下所示:classPerson():def__init__(self,name):self.name=namedefprint_name(self):print(self.name)p=Person('Li
实例如下所示:
class Person():
def __init__(self, name):
self.name = name
def print_name(self):
print(self.name)
p = Person('Li')
import types
p.print_name = types.MethodType(print_name, p) # 绑定函数到对象
p.print_name()
@staticmethod
def print_abc():
print('abc')
Person.print_abc = print_abc
Person.print_abc()
@classmethod
def print_123(cls):
print('123')
Person.print_123 = print_123
Person.print_123()
以上这篇python 类对象和实例对象动态添加方法(分享)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
python 类对象 实例对象 动态添加