Class介紹
模組 vs Class
-如果某種東西你只想使用一次,請使用模組。(Singleton)
-避免過度設計資料結構。盡量使用數字、字串、tuple、串列、集合、字典。
(Guido van Rossum)
(一) 基本
1.1 Self
1.2 私用名稱
1.3 Property
(二) 繼承
2.1 覆寫
2.2 Super
(三) 多型
(四) ClassMethod, staticmethod
請注意Python跟C系列的不同。
它的@classmethod、@staticmethod用法,還有MemberData的使用。
1 | class ClassObject(): |
(五) DockType
(六) 特殊用法
eq … etc.