当前分类: Java认证考试
问题:A developer is d...
查看答案
问题:现有: - f 是一个合法的&...
问题:现有: public class Tester { public static void main (String[] args) { intx-5; Integer xl=x; Integer x2=x; int x3=new Integer(5); system..ut.print(x1.equals(x)); system..ut.print(xl==x); system..ut.print(x2.equals(xl)); system..ut.p...
问题:下列哪项是String的字面量?() ...
问题:Which statements concerning the event model of the AWT are true?() A、At most one listener of each type can be registered with a component.B、Mouse motion listeners can be registered on a List instance.C、There exists a class named ContainerEvent in package...
问题://point X public&ens...
问题:Given that t1 is a reference to a live thread, which is true?()A、The Thread.sleep() method can take t1 as an argument.B、The Object.notify() method can take t1 as an argument.C、The Thread.yield() method can take t1 as an argument.D、The Thread.setPriority()...
问题:类 Student 中字段mark的缺...
问题:Which of the f...
问题:以下有关接口的叙述错误的是哪项?() ...
问题:能够遍历泛型List〈Integer〉 al中的所有...
问题:Which three are valid declarations of a float? () A、 Float foo = -1;B、 Float foo = 1.0;C、 Float foo = 42e1;D、 Float foo = 2.02f;E、 Float foo = 3.03d;F、 Float foo = 0x0123;...
问题:现有: 1. class Book { 2. private final void read() { System.out.print("book "); } 3. } 4. class Page extends Book { 5. public static void main(String [] args) { 6. // insert code here 7. } 8. private final void read() { Syst...
问题:HTTP中的POST和GET在下列哪些方面有区别()。...
问题:面板必须有一个布局管理器,不能出现没有布局管理器的情况。...
问题:In which three ...
问题:使用JDK工具生成的Java文档的文件格式是?() A、XML格式B、自定义格式C、二进制格式D、HTML格式...
问题:Given the following&e...
问题:Java中方法绑定有哪些形式?()A、编译时刻绑定B、运行时刻绑定C、静态绑定D、私有绑定...
问题:1.class SuperFo{ &ens...