摘要: 在学习到python的面向对象的时候,发现python的类的的属性是有区分类的属性及对象的属性的,代码示例如下:class test: a = 'test' def test1(self,a): self.a = a def show(self): ... 阅读全文
posted @ 2015-12-18 17:45 zengjc 阅读(136) 评论(0) 推荐(0)