#
coding=utf-8
class
Employee:
‘
所有员工的基类
‘
empCount = 0
def__init__(self, name, salary):
self.name = name
self.salary = salary
Employee.empCount += 1
def displayCount(self):
print ("Total Employee %d" % Employee.empCount)
def displayEmployee(self):
print ("Name : ", self.name, "nSalary: ", self.salary)
Xiaoxiao = Employee(‘Xiaoxiao‘, 2000)
setattr(Xiaoxiao, ‘age‘, 21)
Tiny = Employee("Tiny", 5000)
#setattr(Tiny, ‘age‘, 23)print ("实例 Employee 类的第一个对象 Xiaoxiao ");
print (‘Xiaoxiao 是否存在age属性:‘,hasattr(Xiaoxiao,‘age‘))
Xiaoxiao.displayEmployee();
print("Age: ",getattr(Xiaoxiao,‘age‘, ‘not find‘));
print ("n")
print ("实例 Employee 类的第二个对象 Tiny")
print (‘Tiny 是否存在age属性:‘,hasattr(Tiny,‘age‘))
Tiny.displayEmployee()
print("Age: ",getattr(Tiny,‘age‘, ‘not find‘));
print ("n")
print ("Total Employee number: %d" % Employee.empCount)
print ("n")
原文:http://www.cnblogs.com/blogofwyl/p/4607757.html
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!