欢迎来到天天文库
浏览记录
ID:59506587
大小:70.11 KB
页数:20页
时间:2020-09-09
《第4章-面向对象(下).pptx》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、1、下列选项中,关于final修饰成员变量的说法正确的是?()A、被final修饰的成员变量可以被多次赋值B、被final修饰的成员变量为常量C、final只能在接口中修饰成员变量D、以上都不对2、final修饰符不可以修饰如下哪个内容?()A、类B、接口C、方法D、变量3、下列选项中,可以被final修饰符修饰的是?()A、抽象方法B、局部变量C、接口D、抽象类4、函数重写与函数重载的相同之处是?()A、权限修饰符B、函数名C、返回值类型D、形参列表5、在下面哪种情况下,可以使用方法重写?()A、父类方法中的形参不适用于子类使用时B、父类中的方法在子类中没有时C、父类的功能无法满足子类
2、的需求时D、父类方法中的返回值类型不适合子类使用6、如果父类的方法是静态的,则子类的方法被()修饰才能覆盖父类的静态方法?A、protectedB、staticC、privateD、final7、父类中的方法被以下哪个关键字修饰后不能被重写?()A、publicB、saticC、finalD、void8、关于final修饰成员变量说法正确的是?()A、被final修饰的成员变量为常量B、被final修饰的成员变量不能被继承C、被final修饰的成员变量可以被多次赋值D、final只能在接口中修饰成员变量9、super调用父类构造方法的代码必须位于子类构造方法的第一行()10、final修
3、饰的成员变量可以在构造方法中对其重新赋值()11、final关键字不可以修饰成员变量()12、下列程序运行结果是()publicclassDemo{ publicstaticvoidmain(String[]args){ Demodemo=newDemo(); demo.show(newCar(){ publicvoidrun(){ System.out.println("demorun"); } }); } publicvoidshow(Carc){ c.run
4、(); }}abstractclassCar{ publicvoidrun(){ System.out.println("carrun..."); }}A、carrunB、demorunC、无结果D、编译报错B13、下列程序运行结果是()publicclassDemo{ publicstaticvoidmain(String[]args){ Objectobj=newFather(){ publicvoidshow(){ System.out.println("helloworld");
5、 } }; obj.show(); }}classFather{ publicvoidshow(){ System.out.println("hellofather"); }}A、hellofatherB、helloworldC、无结果D、程序编译报错D14、阅读下列的程序()publicclassExample{ publicstaticvoidmain(String[]args){ newFather(){ publicvoidshow(){ System
6、.out.println("helloworld"); } }.show(); }}classFather{ publicvoidshow(){ System.out.println("hellofather"); }}A、hellofatherB、helloworldC、编译报错D、编译通过,运行报错B15、分析下面程序,哪一行代码能正确赋值?()classDemo{ publicvoidmethod(){ finalintnum1=10; staticintn
7、um2=20; abstractintnum3=30; privateintnum4=40; }}A、finalintnum1=10;B、staticintnum2=20;C、abstractintnum3=30;D、privateintnum4=40;16、已知类的继承关系如下:classEmployee;classManagerextendsEmployeer
此文档下载收益归作者所有