Python中如何定义静态方法【面试题详解】

今天爱分享给大家带来Python中如何定义静态方法【面试题详解】,希望能够帮助到大家。
使用 staticmethod装饰器


class MyClass(object):
    @staticmethod
    def the_static_method(x):
        print x
MyClass.the_static_method(2) # outputs 2

人已赞赏
Python

Python中@staticmethod和@classmethod的区别【面试题详解】

2020-12-28 21:39:27

Python

Python如何判断一个对象是否拥有某个属性【面试题详解】

2020-12-28 21:44:27

'); })();