静态方法staticmethod

Posted 未来的技术

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了静态方法staticmethod相关的知识,希望对你有一定的参考价值。

class Room:
tag=1
# def __init__(self,name,width,owner):#self表示对象,可以大家用的如p1
# self.name=name
# self.owner=owner
# self.width=width

@classmethod#调用类方法类名直接点函数就可以用不需要self
def tellinfo(cls,name):
print(cls)
print(‘-->‘,cls.tag,name)

@property#属性
def cal(self):
print(‘%s住的%s大小是%s平方米‘ % (self.owner, self.name, self.width))
@staticmethod#静态方法
def washbody(a,b,c):
print(‘%s、%s、%s正在洗澡‘%(a,b,c))


Room.washbody(‘tom‘,‘jerry‘,‘fish‘)#类加方法直接执行函数方法

以上是关于静态方法staticmethod的主要内容,如果未能解决你的问题,请参考以下文章

静态方法@staticmethod 属性方法@property

Python面向对象 | 静态方法 staticmethod

开发者笔记python中的类方法(@classmethod)和静态方法(@staticmethod)

python-静态方法staticmethod类方法classmethod属性方法property

面试必问python实例方法类方法@classmethod静态方法@staticmethod和属性方法@property区别

Python进阶-----静态方法(@staticmethod)