标签:声明 targe 静态方法 span 参数说明 int class pytho ted
python staticmethod 返回函数的静态方法。每组词 www.cgewang.com
该方法不强制要求传递参数,如下声明一个静态方法:
class C(object):
@staticmethod
def f(arg1, arg2, ...):
...
以上实例声明了静态方法 f,从而可以实现实例化使用 C().f(),当然也可以不实例化调用该方法 C.f()。
staticmethod(function)
参数说明:
以上实例输出结果为:
runoob
runoob
标签:声明 targe 静态方法 span 参数说明 int class pytho ted
原文地址:https://www.cnblogs.com/yc10086/p/13379474.html