当前分类: Java认证考试
问题:能够遍历泛型List〈Integer〉 al中的所有...
查看答案
问题:35. String #name&ensp...
问题:以下有关接口的叙述错误的是哪项?() ...
问题:3. string foo = “ABCDE”; 4. foo.substring(3); 5. foo.concat(“XYZ”); 6. Type the value of foo at line 6.()...
问题:t 是一个合法的 Thread ...
问题:A team of programmers is reviewing a proposed API for a new utility class.After some discussion, they realize that they can reduce the number of methods in the API without losing any functionality.If they implement the new design, which two principles wil...
问题:下列哪项是String的字面量?() A、“Hello”B、‘world’C、/u2345D、new String(“good”)...
问题:Given the following...
问题:下列有关抽象方法叙述正确的是哪项?()...
问题:现有: 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...
问题:Which of the f...
问题:What is the numerical range of a char?() A、 0 ... 32767B、 0 ... 65535C、 –256 ... 255D、 –32768 ... 32767E、 Range is platform dependent....
问题:现有: class Wrench2 { int size; public static void main(String [] args) { Wrench2 w=new Wrench2(); w.size=II; Wrench2 w2=go(w, w.size); System. out .print (w2. size); } static Wrench2 go(Wrench2 wr. int s) { S=12; ret...
问题:Java中方法绑定有哪些形式?()A、编译时刻绑定B、运行时刻绑定C、静态绑定D、私有绑定...
问题: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...
问题:HTTP中的POST和GET在下列哪些方面有区别()。...
问题:现有: 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...
问题:public class Score implements Comparable { private int wins, losses; public Score(int w, int 1) { wins = w; losses = 1; } public int getWins() { return wins; } public int getLosses() { return losses; } public String toString() { return ““ + wins + “...
问题:A developer is d...
问题:Java SE JDK中类库java.text的用途是哪项?()A、工具类B、输出输入支持类C、文本处理和格式化类D、结构化查询语言(SQL)支持类...