Python 实例方法_类方法_静态方法

实例方法  类方法   静态方法

>>> #-*- coding:utf-8 -*-
... class A(object):      #实例方法和类方法中的self和cls这两个字符本身没有什么特殊,完全可以用别的字符如hello或者hi来代替,但是python中约定俗成默认用self和cls来作为实例方法和类方法的第一个参数
...     a = 1          #在调用方法时,self用来指代实例对象,cls用来指代类对象本身;静态方法因为本身与类中其他变量或者方法没有关联,所以不需要这样一个参数;
...     def instance_method(self):              #实例方法instance_method()的定义不需要声明,默认需要一个self参数作为第一个参数,在调用的时候这个self参数指代实例对象
...             print '实例方法打印类变量a: %s' % self.a      
...     @classmethod                      #类方法class_method()需要用装饰器@classmethod来声明
...     def class_method(cls):                #默认需要一个cls参数作为函数的第一个参数,在调用的时候这个cls参数指代类对象,这样定义的好处是不需要实例化类对象即可调用这个方法
...             print '类方法打印类变量a: %s' % cls.a
...     @staticmethod                     #静态方法static_method()需要用装饰器@staticmethod来声明
...     def static_method(b):                #其实静态变量就是在类中定义的跟这个类没有关系的方法,它不引用类的变量,也跟类中的其他函数没有关联,完全自己玩自己的
...             print '静态方法打印自己的变量b: %s' % b   #但是既然定义在类中,就得通过类对象或者实例对象来调用
...
>>> A.instance_method()          #实例方法不能直接访问(不能为类对象访问)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unbound method instance_method() must be called with A instance as first argument (got nothing instead)
>>>
>>> A().instance_method()         #A()是实例对象 (可以用实例对象A().instance_method()调用 )        
实例方法打印类变量a: 1
>>>
>>> A.class_method()            #类方法传入的cls代表类对象, 这样不需要实例化类对象即可调用这个方法
类方法打印类变量a: 1
>>>
>>> A().class_method()           #类方法也可以通过实例对象调用:A().class_method();
类方法打印类变量a: 1
>>>
>>> A.static_method(12)          #静态方法 不用实例化 直接访问
静态方法打印自己的变量b: 12
>>>
>>> A().static_method(12)         #静态方法 从 类访问
静态方法打印自己的变量b: 12

静态方法

class Date:
    def __init__(self,year,month,day):
        self.year=year
        self.month=month
        self.day=day
    @staticmethod
    def now(): #用Date.now()的形式去产生实例,该实例用的是当前时间
        t=time.localtime() #获取结构化的时间格式
        return Date(t.tm_year,t.tm_mon,t.tm_mday) #新建实例并且返回
    @staticmethod
    def tomorrow():#用Date.tomorrow()的形式去产生实例,该实例用的是明天的时间
        t=time.localtime(time.time()+86400)
        return Date(t.tm_year,t.tm_mon,t.tm_mday)

a=Date('1987',11,27) #自己定义时间
b=Date.now() #采用当前时间
c=Date.tomorrow() #采用明天的时间

print(a.year,a.month,a.day)
print(b.year,b.month,b.day)
print(c.year,c.month,c.day)

类方法

class A:
    x=1
    @classmethod
    def test(cls):
        print(cls)      
        print(cls.x)    

class B(A):
    x=2
B.test()

'''
#输出 <class '__main__.B'> 2
#输出 2
'''
import time
class Date:
    def __init__(self,year,month,day):
        self.year=year
        self.month=month
        self.day=day
    @staticmethod
    def now():                #静态方法没有cls传入,只属于自身类,继承时候不能直接访问
        t=time.localtime()
        return Date(t.tm_year,t.tm_mon,t.tm_mday)

class EuroDate(Date):
    def __str__(self):
        return 'year:%s month:%s day:%s' %(self.year,self.month,self.day)

e=EuroDate.now()
print(e) #我们的意图是想触发EuroDate.__str__,但是结果为
'''
输出结果:
<__main__.Date object at 0x1013f9d68>
'''

  

import time
class Date:
    def __init__(self,year,month,day):
        self.year=year
        self.month=month
        self.day=day
    # @staticmethod
    # def now():
    #     t=time.localtime()
    #     return Date(t.tm_year,t.tm_mon,t.tm_mday)

    @classmethod #改成类方法
    def now(cls):                   #类方法的cls关联了对应实例EuroDate
        t=time.localtime()
        return cls(t.tm_year,t.tm_mon,t.tm_mday) #哪个类来调用,即用哪个类cls来实例化

class EuroDate(Date):
    def __str__(self):
        return 'year:%s month:%s day:%s' %(self.year,self.month,self.day)

e=EuroDate.now()
print(e) #我们的意图是想触发EuroDate.__str__,此时e就是由EuroDate产生的,所以会如我们所愿
'''
输出结果:
year:2017 month:3 day:3
'''

猜你喜欢

转载自www.cnblogs.com/skyfly0772/p/10651795.html