题目内容

在Python中,不论类的名字是什么,构造方法的名字都是( )。

A. __init__()
B. __destroy__()
C. init()
D. __str__()

查看答案
更多问题

下列代码的输出结果是____。class Ac:def ____init____(self,id):self.id=idid=200a=Ac(100)print(a.id)

下列代码的输出结果是____。class Student(object):count = 0def ____init____(self, name):self.name = nameStudent.count +=1a=Student("张三")b=Student("李四")c=Student("王五")print(Student.count)

面向对象方法的基本观点是一切系统都是由____构成。

如果一个类C1通过继承已有类C而创建,则将C1称作子类。

A. 对
B. 错

答案查题题库