当前位置:首页 > python教程 > python高级

Python staticmethod() 函数

python staticmethod() 函数

python staticmethod 返回函数的静态方法。

该方法不强制要求传递参数,如下声明一个静态方法:

class c(object):
    @staticmethod
    def f(arg1, arg2, ...):
        ...

以上实例声明了静态方法 f,从而可以实现实例化使用 c().f(),当然也可以不实例化调用该方法 c.f()

函数语法
staticmethod(function)

参数说明:

实例
#!/usr/bin/python # -*- coding: utf-8 -*- class c(object): @staticmethod def f(): print('51frw'); c.f(); # 静态方法无需实例化 cobj = c() cobj.f() # 也可以实例化后调用

以上实例输出结果为:

51frw
51frw


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!