Loading

摘要: class A(object): def __init__(self): # 系统定义方法 self.string='A string' self._string='A _string' self.__string='A __string' # 私有变量 def fun(self): return 阅读全文
posted @ 2021-01-11 20:46 wsongl 阅读(171) 评论(0) 推荐(0) 编辑