摘要: 先来段小程序class Foo: name = "abc" def __init__(self,age): self.age = ageprint(Foo.name)Foo.name = "bcd"print(Foo.name)Foo.age = 18print(Foo.age)x = Foo(20 阅读全文
posted @ 2019-03-30 23:25 孙文 阅读(88) 评论(0) 推荐(0) 编辑