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

类中静态方法

时间:2016-10-29 11:49:56      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:style   stat   静态   div   init   bsp   属性   通过   标记   

要在类中使用静态方法,需在类成员函数前面加上@staticmethod标记符,以表示下面的成员函数是静态函数。使用静态方法的好处是,不需要定义实例即可使用这个方法。另外,多个实例共享此静态方法。

# 规范:自己的成员自己去访问,除了类中的方法,类中的方法用对象去访问
# 通过类去访问的有:类属性,静态方法
# 通过对象去访问的有: 对象属性,类中的方法
# 静态方法存在的意义在于不需要创建对象就可以执行该方法
class A(object):
    country = 中国

    def __init__(self,place):
        self.place = place

    def weather(self):
        print(self.place + 晴天)

    @staticmethod
    def temperature():
        print(通过类访问静态方法...)

    @staticmethod
    def func(a,b):
        print(静态方法可以传参数:,a,b)

cc = A(长春)
cc.weather()
print(A.country)
A.temperature()
A.func(1,2)

 

类中静态方法

标签:style   stat   静态   div   init   bsp   属性   通过   标记   

原文地址:http://www.cnblogs.com/liyqiang/p/6010213.html

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