摘要: python中的类有三种属性:字段、方法、特性 字段又分为动态字段和静态字段 类 class Province: 静态字段 memo = 'listen' 动态字段 def __init__(self, arg): self.arg = arg 方法也分为静态方法和动态方法 静态方法 @static 阅读全文
posted @ 2016-06-24 16:28 listen_vv 阅读(730) 评论(0) 推荐(0) 编辑