'''5.构造器就是类在初始化的时候,首先,必须要执行的函数'''class A(object): def __init__(self,name): #构造器,初始化时会自动执行 self.name = name print("init class A") def hello(self): print("hello {0}".format(self.name))a = A("chenyuan"); # 需要传参a.hello() #调用
本文共 300 字,大约阅读时间需要 1 分钟。
'''5.构造器就是类在初始化的时候,首先,必须要执行的函数'''class A(object): def __init__(self,name): #构造器,初始化时会自动执行 self.name = name print("init class A") def hello(self): print("hello {0}".format(self.name))a = A("chenyuan"); # 需要传参a.hello() #调用
转载于:https://my.oschina.net/u/3824134/blog/1799025