网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
已知Student类有一个属性__id,stu是Student类的对象,则通过“stu.__id='1810101'”可以将stu对象中的__id属性赋值为字符串'1810101'。()

此题为判断题(对,错)。


参考答案

更多 “ 已知Student类有一个属性__id,stu是Student类的对象,则通过“stu.__id='1810101'”可以将stu对象中的__id属性赋值为字符串'1810101'。() 此题为判断题(对,错)。 ” 相关考题
考题 已知Student类是一个空类,stu1和stu2是Student类的两个对象,则通过“stu1.name='李晓明'”语句增加的属性可以通过()访问。 A.Student.name、stu1.name或stu2.nameB.Student.name或stu1.nameC.stu1.name或stu2.nameD.stu1.name

考题 已知stu1和stu2是Student类的两个对象,则执行“stu1>stu2”时会自动执行Student类的()方法。 A.__lt__B.__le__C.__gt__D.__ge__

考题 如何获取参数为Object对象的具体属性 如Student类有属性id,name并且已经赋值1,小明我需要定义一个共有的方法,publicvoidaa(Objectobj){......}publicstaticvoidmain(String[]args){Studentstu=newStudent();stu.setId("1");stu.setName("小明");aa(stu);}我如何在aa方法里面获取对象具体的属性值,即:id=1name=“小明”

考题 已知stu1和stu2是Student类的两个对象,则执行“stu1>stu2”时会自动执行Student类的()方法。A.__gt__B.__ge__C.__lt__D.__le__

考题 已知stu是Student类对象,则执行“print(stu)”时会自动执行Student类的()方法。A.__init__B.__str__C.__format__D.__print__

考题 已知Student类有一个属性__id,stu是Student类的对象,则通过“stu.__id='1810101'”可以将stu对象中的__id属性赋值为字符串'1810101'。

考题 有student类,类中声明了公有静态数据成员id,建立student类的对象stu1,则关于数据成员id的访问,下列表达式正确的是:A.student::idB.stu1.idC.stu1::idD.student.id

考题 1、已知stu是Student类对象,则执行“print(stu)”时会自动执行Student类的()方法。A.__init__B.__str__C.__format__D.__print__

考题 2、已知Student类有一个属性__id,stu是Student类的对象,则通过“stu.__id='1810101'”可以将stu对象中的__id属性赋值为字符串'1810101'。