开发者社区> 问答> 正文

如何在函数中调用静态方法?静态方法的范围

假设我用静态方法创建一个类,并希望从另一个类方法或脚本函数运行该方法。

静态方法的范围是什么?

例如:

def Class myClass:

     @staticmethod
     def mystaticmethod(input):
          print("blah")

def scriptfunc():
     myClass.mystaticmethod()

这有效吗?

问题来源:stackoverflow

展开
收起
is大龙 2020-03-24 13:57:01 447 0
1 条回答
写回答
取消 提交回答
  • 您所拥有的是有效的。

    但是对于@staticmethod的目的过于详尽,这是* Short *答案:

    声明一个@staticmethod意味着两件事:

    1. You don't care about the properties or attributes of a method as it's independent of other classes,
    2. You do not require creating an ` init ` or a super method to override it's content or attributes, and doesn't require a subclass/parent class to handle itself.

    回答来源:stackoverflow

    2020-03-24 13:57:09
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
建立联系方法之一 立即下载
低代码开发师(初级)实战教程 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载