概述
Python的私有方法:以'__'双划线开头,但不以双划线结尾, __privateMethod
专有方法:以双划线开头和结尾, __init__
e.g
class Person:
def __init__(self,name):
self.name = "Person"
def __getName(self):
return self.name
<pre style="color: rgb(0, 0, 0); font-family: 'Courier New'; font-size: 9pt; background-color: rgb(255, 255, 255);"><span style="background-color: rgb(255, 228, 255);">aPerson</span> = Person(<span style="color: rgb(0, 128, 0); font-weight: bold;">'test'</span>)
<span style="background-color: rgb(228, 228, 255);">aPerson</span>.getName()
结果: aPerson.getName()
AttributeError: Person instance has no attribute 'getName', 因为是私有所以会报错哦。
而__init__就是一个初始化函数,典型的专有函数
最后
以上就是美丽书本为你收集整理的Python - 私有方法,专有方法的全部内容,希望文章能够帮你解决Python - 私有方法,专有方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复