2015年8月25日

python property装饰器

摘要: 直接上代码: 1 #!/usr/bin/python 2 #encoding=utf-8 3 4 """ 5 @property 可以将python定义的函数“当做”属性访问,从而提供更加友好访问方式 6 """ 7 8 class Parrot: 9 #class Parrot(obje... 阅读全文

posted @ 2015-08-25 16:57 阳台 阅读(240) 评论(0) 推荐(0)

导航