python 静态函数定义 @staticmethod

Python staticmethod() 函数
Python 内置函数 Python 内置函数

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

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

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

以上实例声明了静态方法 f,类可以不用实例化就可以调用该方法 C.f(),当然也可以实例化后调用 C().f()。

函数语法
staticmethod(function)

参考网址:http://www.runoob.com/python/python-func-staticmethod.html

上一篇:如何通过Makefile编译iphone的openSSL


下一篇:Apollo配置服务器