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

请问一下哪里错了?

https://img1.sycdn.imooc.com//5b2f72e8000198ce04100224.jpg

提示第九行错误,Person类里面没有__count

正在回答

4 回答

题目这里设置,的确是不应该被访问到的,报AttributeError这个错误,但是因为报错就会导致执行失败,所以你需要对错误处理一下,比如:

class Person(object):


    __count = 0


    def __init__(self, name):

        self.name = name

        Person.__count = Person.__count + 1

        print Person.__count


p1 = Person('Bob')

p2 = Person('Alice')


try:

    print Person.__count

except:

    print 'attributeerror'


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

梦惊鸿 提问者

非常感谢!
2018-07-01 回复 有任何疑惑可以回复我~
class Person(object):
    __count = 0
    def __init__(self, name):
        self.name = name
        Person.__count += 1
        print (Person.__count)
p1 = Person('Bob')
p2 = Person('Alice')
try:
    print (Person.__count)
except:
    print ('attributeError')

前面加两个下划线__是类的私有属性,因为在类外部是不能访问到类的私有属性的,因此报错,所以需要做异常处理。

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

Python对属性权限的控制是通过属性名来实现的,如果一个属性由双下划线开头(__),该属性就无法被外部访问。看例子:

class Person(object):
    def __init__(self, name):
        self.name = name
        self._title = 'Mr'
        self.__job = 'Student'
p = Person('Bob')
print p.name
# => Bob
print p._title
# => Mr
print p.__job
# => Error
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'Person' object has no attribute '__job'

可见,只有以双下划线开头的"__job"不能直接被外部访问。


所以,你可以这样子定义一个类方法,就可以获取了~

class Person(object):

    __count = 0

    def __init__(self, name):

        Person.__count = Person.__count + 1

        self.name = name

        print Person.__count

    @classmethod#类方法

    def get_count(self):

        return Person.__count


p1 = Person('Bob')

p2 = Person('Alice')


print Person.get_count()



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

要访问__开头的变量用这种方式,Person._Person__count

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

举报

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

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

进入课程

请问一下哪里错了?

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