python类方法@classmethod与@staticmethod

目录

  • python类方法@classmethod与@staticmethod

    • 一、@classmethod

      • 介绍
      • 语法
      • 举例
    • 二、@staticmethod
      • 介绍
      • 语法
      • 举例

python类方法@classmethod与@staticmethod

一、@classmethod

介绍

与普通的类方法有所不同的是,用@classmethod修饰的类方法不传入self实例本身,而是传入cls,代表这个类自身,可以来调用类的属性,类的方法,实例化对象等。

语法

使用的语法也非常简单,直接在类方法上加上装饰器@classmethod即可,另外传入cls参数作为方法的第一个参数。

class A(object):

    @classmethod
    def func(cls):
        pass

举例

class A(object):
    num = 1

    def func1(self):
        print('func1')

    @classmethod
    def func2(cls):
        print('func2')
        print(cls.num)
        cls().func1()

if __name__ == '__main__':
    A.func2()

------------------------------
>>> func2
>>> 1
>>> func1

二、@staticmethod

介绍

使用@staticmethod修饰的类方法也被称为静态方法,此方法不传入代表实例对象的self参数,并且不强制要求传递任何参数,可以被类直接调用,当然实例化的对象也可以调用。

语法

使用时直接在类方法上加上装饰器@staticmethod,参数不需要self,其他参数也是可选。

class B(object):

    @staticmethod
    def func()
        pass

举例

class B(object):

    @staticmethod
    def func1():
        print('func1')

    @staticmethod
    def func2(a, b):
        print('func2')
        print('a=', a)
        print('b=', b)

if __name__ == '__main__':
    B.func1()
    b = B()
    b.func1()
    B.func2(1, 2)

------------------------------
>>> func1
>>> func1
>>> func2
>>> a= 1
>>> b= 2

原文地址:https://www.cnblogs.com/luyuze95/p/11743511.html

时间: 2024-10-13 00:08:36

python类方法@classmethod与@staticmethod的相关文章

python的@classmethod和@staticmethod

本文是对StackOverflow上的一篇高赞回答的不完全翻译,原文链接:meaning-of-classmethod-and-staticmethod-for-beginner Python面向对象编程中,类中定义的方法可以是@classmethod 装饰的类方法,也可以是@staticmethod 装饰的静态方法,用的最多的还是不带装饰器的实例方法.为方便,在下文中用@classmethod装饰的类方法将直接用@classmethod来表述,@staticmethod同理,望读者在阅读时自行

Python的classmethod和staticmethod区别

静态方法(staticmethod) 类方法(classmethod) 静态方法和类方法都可以通过类名.方法名或者实例.方法访问. #-*- coding:utf8 -*- class A(object): def instance_method(self,x): print "instance_method (%s,%s)" % (self,x) @classmethod def class_method(cls,x): #类方法的调用使用类本身作为其隐含的参数 #调用者本身并不需要

python中classmethod与staticmethod的差异及应用

类中三种函数的应用 #!/usr/bin/env python # -*- coding: utf-8 -*- class TClassStatic(object): def __init__(self, data): self.data = data def printself(*arg): # for item in arg: # print item.data print("printself: ", arg) @staticmethod def smethod(*arg): p

Python中classmethod与staticmethod区别

classmethod:类方法staticmethod:静态方法 在python中,静态方法和类方法都是可以通过类对象和类对象实例访问.但是区别是: @classmethod 是一个函数修饰符,它表示接下来的是一个类方法,而对于平常我们见到的则叫做实例方法. 类方法的第一个参数cls,而实例方法的第一个参数是self,表示该类的一个实例. 普通对象方法至少需要一个self参数,代表类对象实例 类方法有类变量cls传入,从而可以用cls做一些相关的处理.并且有子类继承时,调用该类方法时,传入的类变

粗解python的@classmethod和@staticmethod及普通实例方法

引言: 使用不同的函数定义方法,可以使得函数定义更加有效而且易于维护 本文为博主原创,根据本人自己的理解整理而成,若有不准确的地方,希望能留言告知以免误导他人: 首先进一段代码,来直观感受一下不同类型的函数的定义方法: >>> >>> class A(object): a = 1 def instance_method(self): print '实例方法打印类变量a: %s' % self.a @classmethod def class_method(cls): p

python的@classmethod和@staticmethod的区别和使用

@classmethod classmethod 修饰符对应的函数不需要实例化,不需要 self 参数,但第一个参数需要是表示自身类的 cls 参数,可以来调用类的属性,类的方法,实例化对象等. class A(object): bar = 1 def func1(self): print('foo') @classmethod def func2(cls): print('func2') print(cls.bar) cls().func1() # 调用 foo 方法 A.func2() #

Python的3个方法:静态方法(staticmethod),类方法(classmethod)和实例方法

Python的方法主要有3个,即静态方法(staticmethod),类方法(classmethod)和实例方法,如下: def foo(x): print "executing foo(%s)"%(x) class A(object): def foo(self,x): print "executing foo(%s,%s)"%(self,x) @classmethod def class_foo(cls,x): print "executing cla

@classmethod及@staticmethod方法浅析【python】

目前对于python中@classmethod 类方法和@staticmethod静态方法的有了一定的认识,之后有进一步的认识后继续记录. @classmethod :是和一个class类相关的方法,可以通过类货类实例进行调用,并将该class对象(不是class的实例对象)隐式地当作第一个参数传入. @staticmethod :基本上和一个全局函数差不多,可以通过类或者类的实例对象进行调用,不会隐式地传入任何参数. 区别 :类方法需要额外的类变量cls,调用类方法传入的类变量cls是子类,而

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

Python的方法主要有3个,即静态方法(staticmethod),类方法(classmethod)和实例方法 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 def foo(x):     print "executing foo(%s)"%(x)   class A(object):     def foo(self,x):         print "executing foo(%s,%s)"%(self,x)       @