编写程序, 编写⼀个学⽣类, 要求有⼀个计数器的属性, 统计总共实例化了多少个学⽣ 【输入形式】 【输出形式】 【样例输入】 【样例输出】 The total of students is 4
时间: 2023-12-04 18:02:17 浏览: 138
创建学生(Student)类,并实例化对象访问测试
5星 · 资源好评率100%
可以按照如下方式实现:
```python
class Student:
count = 0 # 类属性,统计实例化的学生数量
def __init__(self):
Student.count += 1
# 测试代码
s1 = Student()
s2 = Student()
s3 = Student()
s4 = Student()
print("The total of students is", Student.count)
```
输出结果:
```
The total of students is 4
```
阅读全文