# In Python's object-oriented programming (OOP), both static methods and class methods are used for different purposes, and understanding when to use each can help you design cleaner and more modular ...
如果在Math这个class中定义了add5这个static method,就可以通过Math.add5来调用add5这个函数。static method用于将多个method整合起来,从而便于迁移。例如我有以下几个函数: fun1,fun2,fun3,fun4 ...