定义
1、静态方法也可以通过类名直接调用,无需先创建对象。不同之处在于,类方法的第一个参数是类本身(cls),静态方法没有这样的参数。
如果该方法需要与其他类属性或类方法互动,则可定义为类方法;如果该方法不需要与其他类属性或类方法互动,则可定义为静态方法。
2、在定义静态方法时,需要在方法前添加装饰 @staticmethod。
class类: @staticmethod def静态方法(): pass
实例
importrandom classChar: letters='ABCDEFGHIJKLMNOPQRSTUVWXYZ' digits='0123456789' @classmethod defrandom_letter(cls): returnrandom.choice(cls.letters) @classmethod defrandom_digits(cls): returnrandom.choice(cls.digits) @staticmethod defrandom_char(string): ifnotisinstance(string,str): raiseTypeError('需要字符串参数') returnrandom.choice(string)
以上是python静态方法的定义,希望对大家有所帮助。更多Python学习指导:python基础教程
本教程的操作环境:windows7系统,Python 3.9.1,DELL G3电脑。