标签:默认参数 sel cme import bsp 没有 动态 run stat
class Person(object):
pass
Person.num = 888给类添加属性
默认的实例方法,默认参数self,获得对象信息
@classmethod 给类添加方法 默认参数cls,可以获得类中的信息
@staticmethod 添加静态方法,默认没有参数,独立的方法。
以下是给对象添加方法
import types
types.MethodType(run, p1)将一个方法添加到对象上,这个函数不是类内的函数。
以下是给对象添加属性
p1 = 666
标签:默认参数 sel cme import bsp 没有 动态 run stat
原文地址:http://www.cnblogs.com/ForXinYuanStudyPy/p/7707261.html