Python开发【第七篇】:面向对象二
摘要:
字段 class Foo: #静态字段(保存在类中) CC = 123 def __init__(self): #普通字段(保存在对象中) self.name = 'alex' def show(self): print(self.name) 静态字段的应用: class Province: def... 阅读全文
posted @ 2017-02-08 12:31 yinshoucheng 阅读(376) 评论(0) 推荐(0) 编辑