问题解释 这是因为你在该类中定义的该函数并没有使用self相关的变量,因此可以把此函数设为静态方法即可。 解决方法 去掉函数定义的self,并在函数定义的上一行输入@staticmethod
用 PyCharm 写 Python 的 code 时, 有些类中的函数会提示 Method xxx may be 'static', 造成这个问题的原因是该方法不涉及对该类属性的操作,编译器建议声明为@staticmethod.
function(函数) —— A series of statements which returns some value toa caller. It can also be passed zero or more arguments which may beused in the execution of the body. method(方法) —— A function which is defined inside a class body. Ifcalled as an attribute of an instance of th...