开发者

python中的classmethod与staticmethod

目录编程客栈
  • 1.静态方法http://www.cppcns.com(staticmethod)
  • 2.类方法(classmethod)
    • 为什么会出现classmethod

1.静态方法(staticmethod)

静态方法:

@staticmethod也是一个类方法,是可以直接类调用的。个人认为的使用场景是:只要要定义的方法里不涉及到self参数,就用静态方法承担。因为这样就表明这个方法和本身的类没有关系,明确的区别编程客栈出类相关和不相关。

class A:
  def __init__(self, a, b):
    self.a = a
    self.b = b

  def do_normal_something(self, a, b):
    print("do_normal_something",a,b)

  @staticmethod
  def do_static_something(a,b):
    print('do_static_something',a,b)

  @classmethod
  def do_class_something(cls):
    pass

  def __call__(self,a,b):
    print("123call",a,b)

a = A(1,2)
a.do_normal_something(7,8)
a.do_static_something(5,6)

2.类方法(classmethod)

为什么会出现classmethod

classmethod设计的目的是什么呢?事实上与python面向对象编程有关的,由于Python不支持多个的參数重载构造函数,比方在C++里,构造函数能够依据參数个数不一样。能够写多个构造函数。Python为了解决问题,採用classmethod修饰符的方式,这样定义出来的函数就能够在类对象实例化之前调用这些函数,就相当于多个构造函数,解决多个构造函数的代码写在类外面的问题。

  • 类最基本的作用是实例化出一个对象,但是有的时候在实例化之前,就需要先和类做一定的交互,这种交互可能会影响实际实例化的过程,所以必须放在调用构造函数之前。大概也可能是因为这个原因出现了classmethod
  • 直接一点来说,我们知道对于一个普通的类,我们要使用其中的方法的话,需要对类进行实例化,而一个类中,某个函数前面加上了staticmethod或者classmethod的话,那么这个函数就可以不通过实例化直接调用,可以通过类名进行调用的
  • @classmethod 定义的类方法是可选构造函数中,我们定义了一个类方法,类方法的第一个参数(cls)指代的就是类本身。类方法会用这个类来创建并返回最终的实例。使用类方法的另一个好处就是在继承的时候,保证了子类使用可选构造函数构造出来的类是子类的实例而不是父类的实例。

案例:

class Data_test(object):

  def __init__(self, year=0, month=0, day=0):
    self.day = day
    self.month = month
    self.year = year

  def out_date(self):
    print('year:',self.year,'month:',self.month,'day:',self.day)

t = Data_test(2016, 8, 1)
t.out_date()

python中的classmethod与staticmethod

但是如果用户输入的是http://www.cppcns.com “2016-8-1” 这样的字符格式,那么就需要调用Date_test 类前做一下处理:

class Data_test(object):

  def __init__(self, year=0, month=0, day=0):
    self.day = day
    self.month = month
    self.year = year

  def out_date(self):
    print('year:',self.year,'month:',self.month,'day:',self.day)


string_date = '2016-8-1'
year, month, day = map(int, string_date.split('-'))
s = Data_test(year, month, day)
s.out_date()

python中的classmethod与staticmethod

先把‘2016-8-1’ 分解成 year,month,day 三个变量,然后转成int,再调用Date_test(year,month,day)函数。 也很符合期望。

那我可不可以把这个字符串处理的函数放到 Date_test 类当中呢?

那么@classmethod 就开始出场了

class Data_test(object):

  def __init__(self, year=0, month=0, day=0):
    self.day = day
    self.month = month
    self.year = year

  @classmethod
  def getdata(cls,str): #cls表示调用当编程客栈前类名
    year, month, day = map(int, string_date.split('-'))
    s = cls(year,month,day)
    return s #返回一个初始化的类

  def out_date(self):
    print('year:',self.year,'month:',self.month,'day:',self.day)


string_date = '2016-8-1'
s = Data_test.getdata(string_date)
s.out_date()

python中的classmethod与staticmethod

在继承时也能工作的很好:

类方法的一个主要用途就是定义多个构造器。它接受一个class 作为第一个参数(cls)。在继承时也能工作的很好:

import time

class Data:
  #主要构造器
  def __init__(self,y,m,d):
    self.year = y
    self.month = m
    self.day = d
    print('year:', self.year, 'month:', self.month, 'day:', self.day)
  # 可选择的构造器
  @classmethod
  def today(cls):
    t = time.localtime()
    return cls(t.tm_year,t.tm_mon,t.tm_mday)

a = Data(2022,1,13) #主要构造器
b = Data.today() #可选择的构造器

class NewData(Data):
  pass
c = NewData.today() #继承的时候也可照样工作

python中的classmethod与staticmethod

 到此这篇关于python中的classmethod与staticmethod的文章就介绍到这了,更多相关python的classmethod和staticmethod内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新开发

开发排行榜