python __def__ Exception AttributeError: "'NoneType' object has no attribute

本文探讨了在Python类中实现删除对象时遇到的错误,并详细解释了将对象计数从使用实例变量更改为类变量的重要性。通过实例演示了如何避免常见的编程陷阱,确保对象计数在删除对象后正确更新。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 14         def __del__(self):
 15                 '''delete a person.'''
 16                 print 'delete person %s' % self.name
 17                 self.__class__.population -= 1
 18                 if self.__class__.population == 0:
 19                         print 'there is no one in here'
 20                 else:
 21                         print 'there are %d in here' % self.__class__.popula    tion

开始的时候我是用的Object.population。所以,出现了上面的错误。后来网上查了下资料,要将其改为:

self.__class__.population才行。 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值