类中的静态变量 需要通过类名.静态变量名 来修改 ;通过对象不能修改

python中如何统计一个类的实例化对象??

 1 class Person:
 2       #静态变量count,用于记录类被实例化的次数
 3      count = 0
 4       
 5       mind = "有思想"
 6       animal = "高级动物"
 7       soul = "有思想"
 8       def __init__(self ,country ,name ,sex ,age ,height ):
 9             self.country = country
10             self.name = name
11             self.sex = sex
12             self.age = age
13             self.height = height
14             #类被实例化时,会自动调用__init__()方法
15             #类中的静态变量 需要类名.静态变量来修改
16             Person.count += 1
17             
18       def eat(self):
19             print("%s在吃饭" %self.name)
20       def sleep(self):
21             print("%s睡觉" %self.name)
22       def  work(self):
23             print("%s工作……" %self.name)
24 
25 p1 = Person("中国","张三","","42","175")
26 p2 = Person("中国","李四","","35","180")
27 p3 = Person("美国","tanx","","21","160")
28 p4 = Person(p1.country,p2.name,p3.sex,p2.age,p3.height)
29 
30 #通过类名   可以改变类中的静态变量
31 print(Person.count)
32 
33 #通过对象 不能改变类中的静态变量的值 
34 p1.count = 8
35 print(Person.__dict__)
统计类的实例化对象代码

相关文章:

  • 2021-06-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-12
猜你喜欢
  • 2022-12-23
  • 2022-01-20
  • 2021-07-02
  • 2022-12-23
  • 2021-08-25
  • 2022-12-23
  • 2021-10-05
相关资源
相似解决方案