# -*-coding:utf-8-*-
# 普通方法,类方法,静态方法的区别
__metaclass__ = type
class Tst:
name = 'tst'
data = 'this is data'
# 普通方法
def normalMethod(self, name):
print(self.data, name)
# 类方法,可以访问类属性
@classmethod
def classMethod(cls, name):
print(cls.data, name)
# 静态方法,不可以访问类属性
@staticmethod
def staticMethod(name):
print(name)
测试
tst = Tst()
tst.data = 'this is new'
tst.normalMethod('name')
tst.classMethod('name')
tst.staticMethod('name')
结果如下:
- 三种方法都可以通过实例来调用,但是类方法和静态方法无法访问实例属性,所以更改了tst.data仅对普通方法起了作用
区别In [1]:
this is new name
this is data name
name
- 普通方法只能通过实例调用,不能通过类名调用;
- 静态方法和类方法是可以通过类名直接调用
# error普通方法必须通过实例调用
Tst.normalMethod('name')
#结果:
Tst.normalMethod('name')
Traceback (most recent call last):
File "", line 1, in
Tst.normalMethod('name')
TypeError: normalMethod() missing 1 required positional argument: 'name'
Tst.classMethod('name')
Tst.staticMethod('name')
#结果
this is data name
name
总结
- 普通方法,可以通过self访问实例属性
def normalMethod(self,data) #带 self 的普通方法
- 类方法,可以通过cls访问类属性
@classmethod
def classMethod(cls,data) #带 cls 的类方法
- 静态方法,不可以访问,通过传值的方式
@staticmethod
def staticMethod(data)#只带 类属性 的静态方法
参考链接
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)