Python之高級編程

一、給class綁定屬性:方便全部對象使用 二、使用__slote__變量:限制綁定屬性 __slots__ = ('name', 'age') - 用tuple定義容許綁定的屬性名稱 子類實例容許定義的屬性就是自身的__slots__加上父類的__slots__ 三、@propertypython class Student(object): @property def bir
相關文章
相關標籤/搜索