标签:turn str strong 对象 举例 int hello def people
1、如何在外部访问类里面的私有方法
通过 实例化对象._+类名__+私有方法名
举例:
class people:
def init(self, name):
self.name = name
def getName(self): # 实例方法
return self.name
def __say(self, con):
print(self.name +"说:"+con)
xiao=people(‘小红‘)
xiao._people__say(‘hello‘) ==》小红说:hello
标签:turn str strong 对象 举例 int hello def people
原文地址:https://www.cnblogs.com/zengzhu/p/14049347.html