今天爱分享给大家带来Python中如何定义静态方法【面试题详解】,希望能够帮助到大家。
使用 staticmethod装饰器
class MyClass(object): @staticmethod def the_static_method(x): print x MyClass.the_static_method(2) # outputs 2
原文链接:http://blog.itblood.com/4520.html,转载请注明出处。
今天爱分享给大家带来Python中如何定义静态方法【面试题详解】,希望能够帮助到大家。
使用 staticmethod装饰器
class MyClass(object): @staticmethod def the_static_method(x): print x MyClass.the_static_method(2) # outputs 2