- 论坛徽章:
- 0
|
初学Python,写了个简单的程序,老是有问题
- #!/usr/bin/python
- # Filename: class.py
- class Person:
- '''Defination of class Person'''
- count=0
-
- def __init__(self,name):
- '''defination of constructor'''
- self.name = name
- Person.count+=1
- print self.name,'is created'
- def __del__(self):
- '''defination of destructor.'''
- print 'says bye to %s' %self.name
- Person.count-=1
- if Person.count==0:
- print self.name,'is the last one.'
-
- def howmuch(self):
- return Person.count
-
- def sayhello(self):
- print 'hello,',self.name
- p = Person('edward')
复制代码
运行结果
- edward is created
- says bye to edward
- Exception exceptions.AttributeError: "'NoneType' object has no attribute 'count'" in <bound method Person.__del__ of <__main__.Person instance at 0xb7e96c4c>> ignored
复制代码
找了半天原因,原来问题出在这里
改成
- pedward = Person('edward')
复制代码
以后,问题解决了.
但是却不知道到底是为什么.难道python中不允许用比较短的变量名吗,有人知道原因不,请告诉一声,谢谢了. |
|