Python classmethod 修饰符描述语法参数返回值实例Python classmethod 修饰符描述Python classmethod 修饰符对应的函数不需要实例化,不需要 self 参数,但第一个参数需要是表示自身类的 cls 参数,可以来调用类的属性,类的方法,实例化对象等。 语法classmethod 语法: classmethod 参数 无。 返回值返回函数的类方法。 实例以下实例展示了 classmethod 的使用方法: func21foo 输出结果为: func21foo