为了账号安全,请及时绑定邮箱和手机立即绑定

关于访问限制

class Person(object):

    def __init__(self, score):

        self.__score = score

    def get_score(self):

        return self.__score

p = Person(100)

setattr(p, '__score', 88)

print p.get_score

print p.__score

print p._Person__score

  1. 这里面第一个print p.get_score返回的是<bound method Person.get_score of <__main__.Person object at 0x0000000001F81E48>>,这是返回get_score()方法的地址吗?

  2. __score不能被外部访问是因为Python解释器自动把class内部的__score变成了_Person__score,但是p._Person__score却能被外部访问,print结果也是100,这是为什么呢?


正在回答

2 回答

  1. 返回的是get_score()的地址

  2. 可以print dir(p) 一下,就知道它里面的所有属性名了

2 回复 有任何疑惑可以回复我~

p.getscore返回函数地址,p.getsore()函数调用

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
python进阶
  • 参与学习       255665    人
  • 解答问题       2949    个

学习函数式、模块和面向对象编程,掌握Python高级程序设计

进入课程

关于访问限制

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信