看到Python中有个函数名比较奇特,__init__我知道加下划线的函数会自动运行,但是不知道它存在的具体意义..
Python中所有的类成员(包括数据成员)都是 公共的 ,所有的方法都是 有效的 。
只有一个例外:如果你使用的数据成员名称以 双下划线前缀 比如__privatevar,Python的名称管理体系会有效地把它作为私有变量。
这样就有一个惯例,如果某个变量只想在类或对象中使用,就应该以单下划线前缀。而其他的名称都将作为公共的,可以被其他类/对象使用。记住这只是一个惯例,并不是Python所要求的(与双下划线前缀不同)。
同样,注意__del__方法与 destructor 的概念类似。"
恍然大悟原来__init__在类中被用做构造函数,固定写法,看似很死板,其实有道理
def__init__(self,name): '''Initializestheperson'sdata.''' self.name=name print'(Initializing%s)'%self.name #Whenthispersoniscreated,he/she #addstothepopulation Person.population+=1
name变量属于对象(它使用self赋值)因此是对象的变量
self.name的值根据每个对象指定,这表明了它作为对象的变量的本质。
例如我们定义一个Box类,有width, height, depth三个属性,以及计算体积的方法:
classBox: defsetDimension(self,width,height,depth): self.width=width self.height=height self.depth=depth defgetVolume(self): returnself.width*self.height*self.depth b=Box() b.setDimension(10,20,30) print(b.getVolume())
classBox: #defsetDimension(self,width,height,depth): #self.width=width #self.height=height #self.depth=depth def__init__(self,width,height,depth): self.width=width self.height=height self.depth=depth defgetVolume(self): returnself.width*self.height*self.depth b=Box(10,20,30) print(b.getVolume())原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容