Python静态方法和类方法区别?

2023-12-13 6:51:41 网络知识 匿名

尽管classmethod和staticmethod非常相似,但在用法上依然有一些明显的区别。classmethod必须有一个指向类对象的引用作为第一个参数,而staticmethod可以没有任何参数。

举个栗子:

classNum:

#普通方法:能用Num调用而不能用实例化对象调用

defone():

print('1')

#实例方法:能用实例化对象调用而不能用Num调用

deftwo(self):

print('2')

#静态方法:能用Num和实例化对象调用

@staticmethod

defthree():

print('3')

#类方法:第一个参数cls长什么样不重要,都是指Num类本身,调用时将Num类作为对象隐式地传入方法

@classmethod

defgo(cls):

cls.three()

Num.one()#1

#Num.two()#TypeError:two()missing1requiredpositionalargument:'self'

Num.three()#3

Num.go()#3

i=Num()

#i.one()#TypeError:one()takes0positionalargumentsbut1wasgiven

i.two()#2

i.three()#3

i.go()#3

以上内容为大家介绍了Python静态方法和类方法区别?希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:瀚银百科。

发表评论: