python之类的基础运用
2021-03-13 19:30
阅读:573
标签:turn str strong 对象 举例 int hello def people 1、如何在外部访问类里面的私有方法 xiao=people(‘小红‘) python之类的基础运用 标签:turn str strong 对象 举例 int hello def people 原文地址:https://www.cnblogs.com/zengzhu/p/14049347.html
通过 实例化对象._+类名__+私有方法名
举例:
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__say(‘hello‘) ==》小红说:hello
评论
亲,登录后才可以留言!