试题详情
- 多项选择题1) class Person { 2) public void printValue(int i, int j) {/*…*/ } 3) public void printValue(int i){/*...*/ } 4) } 5) public class Teacher extends Person { 6) public void printValue() {/*...*/ } 7) public void printValue(int i) {/*...*/} 8) public static void main(String args[]){ 9) Person t = new Teacher(); 10) t.printValue(10); 11) } 12) } Which method will the statement on line 10 call?()
A、 on line 2
B、 on line 3
C、 on line 6
D、 on line 7
- A,D
关注下方微信公众号,在线模考后查看
热门试题
- package foo;&e
- 10. interface&
- class Flow&ens
- A programmer&en
- 下列关于java 中的&ens
- Which the two&
- 在一个弹性布局的面板中,如果有10个组件
- 有一堆零件(零件个数不超过1000),如
- 按钮的事件处理类的主要作用是什么?()
- 说明抽象类和接口的异同。
- public class&e
- 下列哪项不是JDK所包含的内容?()
- 已知: 下面哪些代码在横线处是合法的(
- 33. Date
- Java的字符采用何种编码方案?有何特点
- To implement&en
- 对于满足SQL92标准的SQL语句:&e
- 在java中,下列标识符不合法的有()。
- 建立一个银行账户类,要求能够存放用户的账
- 1. class