atsuoishimoto's diary
id:atsuoishimoto
スタティックメソッドは要らない子? - その2
http://d.hatena.ne.jp/atsuoishimoto/20100807/1281169026 を書いたあとに、スタティックメソッドの使い道を思いついた。やや人工的なシチュエーションではあるが…こんなコードを考えてみよう def _callexit(): sys.exit() class Foo(object): shutdown = _callexit Foo().shutdown() このコードは動作しない。 Foo().shu…