码迷,mamicode.com
首页 > 编程语言 > 详细

Python staticmethod() 函数

时间:2020-07-26 15:03:58      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:声明   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)

参数说明:

实例

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

以上实例输出结果为:

runoob
runoob

Python staticmethod() 函数

标签:声明   targe   静态方法   span   参数说明   int   class   pytho   ted   

原文地址:https://www.cnblogs.com/yc10086/p/13379474.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!