码迷,mamicode.com
首页 > 其他好文 > 详细

静态方法staticmethod

时间:2018-05-18 15:37:39      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:类方法   执行   fish   函数   prope   大小   @class   size   SM   

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

标签:类方法   执行   fish   函数   prope   大小   @class   size   SM   

原文地址:https://www.cnblogs.com/wfl9310/p/9056080.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!