问题:现有: class Banana2&en...
查看答案
问题:class MyThread extends Thread { public void run() { System.out.println(“AAA”); } public void run(Runnable r) { System.out.println(“BBB”); } public static void main(String[] args) { new Thread(new MyThread()).start(); } } What is the result?() A、 ...
问题:You are assigned&ensp...
问题:程序员已经创建了一个类,该类的实例可以用做Hashtable&#...
问题:Given: 310-025 ...
问题:public class IfTest&e...
问题:1. interface A { public void aMethod(); } 2. interface B { public void bMethod(); } 3. interface C extends A,B { public void cMethod(); } 4. class D implements B { 5. public void bMethod() { } 6. } 7. class E extends D implements C { 8. public void...
问题:Which two can ...
问题:类Student的声明如下: pack...
问题:类的可访问性不影响类成员的可访问性...
问题:现有: 1. interface Altitude { 2. //insert code here 3. } 和4个声明: int HIGH = 7; public int HIGH = 7; abstract int HIGH = 7; interface int HIGH = 7; 分别插入到第2行,有多少行可以编译?() A、 0B、 1C、 2D、 3E、 4...
问题:You want a cla...
问题:Which three will compile and run without exception?()A、private synchronized Object o;B、void go(){ synchronized(){/* code here */}C、public synchronized void go(){/* code here */}D、private synchronized(this) void go(){/* code here */}E、void go(){ synchr...
问题:Java语言中表达式“11”+22的结果是哪项?() A、33B、1122C、22D、表达式错误...
问题:Your web page in...
问题:下列哪项不是JDK所包含的内容?() A、Java编程语言B、工具及工具的APIC、Java EE扩展APID、Java平台虚拟机...
问题:You want to li...
问题:public class foo&ensp...
问题:构造函数只能重载不能覆盖...
问题:Given that c is a reference to a valid java.io.Console object, which two code fragments read a line of text from the console?()A、String s = c.readLine();B、char[ ] c = c.readLine();C、String s = c.readConsole();D、char[ ] c = c.readConsole();E、String s = c.r...