题目内容

构造方法指的是__init__方法。

A. 对
B. 错

查看答案
更多问题

当删除一个对象来释放类所占用资源的时候,Python解释器默认会调用另外一个方法,这个方法就是__del__( )方法。

A. 对
B. 错

class Student:def __init__(self,n):name=ndef show(self):print(self.name)s=Student("xxx")s.show()结果:报'Student' object has no attribute 'name'

A. 对
B. 错

类的继承是指在一个现有类的基础上构建一个新的类,构建出来的新类被称作父类。

A. 对
B. 错

class Person:def __init__(self,n="xxx"):self.name=nclass Student(Person):def __init__(self,n="aaa",s="male"):Person.__init__(self)self.sex=sdef show(self):print(self.name,self.sex)s=Student("yyy","female")s.show()结果:

A. aaa male
B. aaa female
C. yyy female
D. xxx female

答案查题题库