2013年8月19日 星期一

靜態方法

>>> class C:
...     @staticmethod
...     def hello():
...             print "Hello World"
...
>>> C.hello()
Hello World

參考
http://stackoverflow.com/questions/735975/static-methods-in-python

沒有留言: