使用者貢獻
(最新 | 最舊) 檢視 (較新 50 筆 | 較舊 50 筆) (20 | 50 | 100 | 250 | 500)
- 2013年3月30日 (六) 06:06 (差異 | 歷史) . . (+866) . . 新 SCJP 1.6版考題 084 (新頁面: 11. class Alpha{ 12. public void foo(){System.out.print("Afoo ");} 13. } 14. public class Beta extends Alpha{ 15. public void foo(){System.out.print("Bfoo ");} 16. public s...) (目前)
- 2013年3月30日 (六) 06:05 (差異 | 歷史) . . (+858) . . 新 SCJP 1.6版考題 085 (新頁面: 11. class Animal{public String noise(){return "peep";}} 12. class Dog extends Animal{ 13. public String noise(){return "bark";} 14 } 15. class Cat extends Animal{ 16. public...) (目前)
- 2013年3月30日 (六) 06:04 (差異 | 歷史) . . (+919) . . 新 SCJP 1.6版考題 086 (新頁面: 10. abstract class A{ 11. abstract void a1(); 12. void a2(){} 13. } 14. class B extends A{ 15. void a1(){} 16. void a2(){} 17. } 18. class C extends B{void c1(){}} and:...) (目前)
- 2013年3月30日 (六) 06:03 (差異 | 歷史) . . (+942) . . 新 SCJP 1.6版考題 087 (新頁面: A team of programmers is involved in reviewing a proposed design for a new utility class, After some discussion, they realize that the current design allows other classes to access...) (目前)
- 2013年3月30日 (六) 06:01 (差異 | 歷史) . . (+1,673) . . 新 SCJP 1.6版考題 088 (新頁面: Which Three statements are true? (Choose Three.) A. A final method in class X can be abstract if and only if X is abstract. B. A protected method in class X can be overridden by a...) (目前)
- 2013年3月30日 (六) 05:59 (差異 | 歷史) . . (+1,529) . . 新 SCJP 1.6版考題 089 (新頁面: 1. public class Car{ 2. private int wheelCount; 3. private String vin; 4. public Car(String vin){ 5. this.vin = vin; 6. this.wheelCount = 4; 7. } 8. pu...) (目前)
- 2013年3月30日 (六) 05:58 (差異 | 歷史) . . (+1,013) . . 新 SCJP 1.6版考題 090 (新頁面: 11. interface DeclareStuff{ 12. public static final int EASY = 3; 13. void doStuff(int t);} 14. public class TestDeclare implements DeclareStuff{ 15. public static void ma...) (目前)
- 2013年3月30日 (六) 05:57 (差異 | 歷史) . . (+1,363) . . 新 SCJP 1.6版考題 091 (新頁面: A class games.cards.Poker is correctly defined in the jar file Poker.jar. A user wants to execute the main method of Poker on a UNIX system using the command: java games.cards.Poker ...) (目前)
- 2013年3月30日 (六) 05:56 (差異 | 歷史) . . (+1,101) . . 新 SCJP 1.6版考題 092 (新頁面: Given a correctly compiled class whose source code is: 1. package com.sun.sjcp; 2. public class Commander { 3. public static void main(String[] args) { 4. // more code here ...) (目前)
- 2013年3月30日 (六) 05:54 (差異 | 歷史) . . (+742) . . 新 SCJP 1.6版考題 093 (新頁面: 10. class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Sprite{ 14. //insert code here 15. } Which code, inserted at line 14...) (目前)
- 2013年3月30日 (六) 05:53 (差異 | 歷史) . . (+1,174) . . 新 SCJP 1.6版考題 094 (新頁面: 11. public class Rainbow { 12. public enum MyColor { 13. RED(0xff0000), GREEN(0x00ff00), BLUE(0x0000ff); 14. private final int rgb; 15. MyColor(int rgb){this.rgb = r...) (目前)
- 2013年3月30日 (六) 05:52 (差異 | 歷史) . . (+907) . . 新 SCJP 1.6版考題 095 (新頁面: 1. interface TestA{String toString();} 2. public class Test{ 3. public static void main(String[] args){ 4. System.out.println(new TestA(){ 5. public String toString()...) (目前)
- 2013年3月30日 (六) 05:51 (差異 | 歷史) . . (+1,138) . . 新 SCJP 1.6版考題 096 (新頁面: 1. package utils; 2. 3. public class Repetition { 4. public static String twice(String s){return s + s;} 5. } and given another class Demo: 1. // insert code here 2. 3. publ...) (目前)
- 2013年3月30日 (六) 05:49 (差異 | 歷史) . . (+761) . . 新 SCJP 1.6版考題 097 (新頁面: Which statement is true? A. A class's finalize() method CANNOT be invoked explicitly. B. super.finalize() is called implicitly by any overriding finalize() method. C. The fin...) (目前)
- 2013年3月30日 (六) 05:48 (差異 | 歷史) . . (+1,025) . . 新 SCJP 1.6版考題 098 (新頁面: 15. public class Yippee{ 16. public static void main(String[] args){ 17. for(int x = 1; x < args.length; x++){ 18. System.out.print(args[x] + " "); 19. } 20. ...) (目前)
- 2013年3月30日 (六) 05:45 (差異 | 歷史) . . (+1,147) . . 新 SCJP 1.6版考題 099 (新頁面: 3. interface Animal{void makeNoise();} 4. class Horse implements Animal{ 5. Long weight = 1200L; 6. public void makeNoise(){System.out.println("whinny");} 7. } 8. public clas...) (目前)
- 2013年3月30日 (六) 05:44 (差異 | 歷史) . . (+1,066) . . 新 SCJP 1.6版考題 100 (新頁面: 10. public class SuperCalc{ 11. protected static int multiply(int a, int b){return a * b;} 12. } and: 20. public class SubCalc extends SuperCalc{ 21. public static int multip...) (目前)
- 2013年3月30日 (六) 05:42 (差異 | 歷史) . . (+1,252) . . 新 SCJP 1.6版考題 101 (新頁面: Given: 10. package com.sun.scjp; 11. public class Geodetics { 12. public static final double DIAMETER = 12756.32; //kilometers 13. } Which two correctly access the DIAMETER ...) (目前)
- 2013年3月30日 (六) 05:40 (差異 | 歷史) . . (+877) . . 新 SCJP 1.6版考題 102 (新頁面: Given: 10. interface Foo{int bar();} 11. public class Sprite{ 12. public int fubar(Foo foo){return foo.bar();} 13. public void testFoo(){ 14. fubar( 15. //insert c...) (目前)
- 2013年3月30日 (六) 05:39 (差異 | 歷史) . . (+1,068) . . 新 SCJP 1.6版考題 103 (新頁面: Given: 11. public enum Title{ 12. MR("Mr."), MRS("Mrs."), MS("Ms."); 13. private final String title; 14. private Title(String t){title = t;} 15. public String format(Stri...) (目前)
- 2013年3月30日 (六) 05:38 (差異 | 歷史) . . (+759) . . 新 SCJP 1.6版考題 104 (新頁面: Given: 10. class Line{ 11. public static class Point{} 12. } 13. 14. class Triangle{ 15. //insert code here 16. } Which code, inserted at line 15, creates an instance ...) (目前)
- 2013年3月30日 (六) 05:37 (差異 | 歷史) . . (+1,131) . . 新 SCJP 1.6版考題 105 (新頁面: Given: 1. public class A { 2. 3. private int counter = 0; 4 5. public static int getInstanceCount(){ 6. return counter; 7. } 8. 9. public A(){ 10. counter++; 11. } 12. 13...) (目前)
- 2013年3月30日 (六) 05:35 (差異 | 歷史) . . (+1,095) . . 新 SCJP 1.6版考題 106 (新頁面: Given classes defined in two different files: 1. package util; 2. public class BitUtils{ 3. public static void process(byte[] b){→more code here:} 4. } 1. package app; 2. ...) (目前)
- 2013年3月30日 (六) 05:34 (差異 | 歷史) . . (+1,410) . . 新 SCJP 1.6版考題 107 (新頁面: Given: 10. class Inner{ 11. private int x; 12. public void setX(int x){this.x = x;} 13. public int getX(){return x;} 14. } 15. 16. class Outer{ 17. private Inner y; 18. publi...) (目前)
- 2013年3月30日 (六) 05:32 (差異 | 歷史) . . (+1,444) . . 新 SCJP 1.6版考題 108 (新頁面: Given: 11. class Snoochy { 12. Boochy booch; 13. public Snoochy(){booch = new Boochy(this);} 14 } 15. 16. class Boochy{ 17. Snoochy snooch; 18. public Boochy(Snoochy s){snooch...) (目前)
- 2013年3月30日 (六) 04:27 (差異 | 歷史) . . (+1,217) . . 新 SCJP 1.6版考題 109 (新頁面: Given: 5. class Payload{ 6. private int weight; 7. public Payload (int w){weight = w;} 8. public void setWeight(int w){weight = w;} 9. public String toString(){re...) (目前)
- 2013年3月30日 (六) 04:26 (差異 | 歷史) . . (+982) . . 新 SCJP 1.6版考題 110 (新頁面: Given: 11. public static void test(Sting str){ 12. int check = 4; 13. if(check = str.length()){ 14. System.out.print(str.charAt(check -= 1) + ", "); 15. }else{ 16. ...) (目前)
- 2013年3月30日 (六) 04:23 (差異 | 歷史) . . (+1,053) . . 新 SCJP 1.6版考題 111 (新頁面: Given: 15. public class Pass2{ 16. public void static main(String[] args){ 17. int x = 6; 18. Pass2 p = new Pass2(); 19. .doStuff(x); 20. System.out.print(" mai...) (目前)
- 2013年3月30日 (六) 04:22 (差異 | 歷史) . . (+878) . . 新 SCJP 1.6版考題 112 (新頁面: Given: 12. public class Test{ 13. public enum Dogs{collie, harrier); 14. public static void main(String[] args){ 15. Dogs myDog = Dogs.collie; 16. switch(myDog){ 17....) (目前)
- 2013年3月30日 (六) 04:21 (差異 | 歷史) . . (+816) . . 新 SCJP 1.6版考題 113 (新頁面: Given: 10. public class Foo{ 11. static int[] a; 12. static{ a[0] = 2;} 13. public static void main( String[] args){} 14. } Which exception or error will be thrown whe...) (目前)
- 2013年3月30日 (六) 04:20 (差異 | 歷史) . . (+888) . . 新 SCJP 1.6版考題 114 (新頁面: Given: 10. class line{ 11. public class Point{public int x, y;} 12. public Point getPoint(){return new Point();} 13. } 14. class Triangle{ 15. public Triangle(){ 16. ...) (目前)
- 2013年3月30日 (六) 04:19 (差異 | 歷史) . . (+669) . . 新 SCJP 1.6版考題 115 (新頁面: Given: 11. public static void main(String[] args){ 12. for(int i = 0; i <= 10; i++){ 13. if(i > 6) break; 14. } 15. System.out.println(i); 16. } What is the resu...) (目前)
- 2013年3月30日 (六) 04:17 (差異 | 歷史) . . (+884) . . 新 SCJP 1.6版考題 116 (新頁面: Given: 11. public class Commander{ 12. public static void main(String[] args){ 13. String myProp = →insert code here: 14. System.out.println(myProp); 15. } 16. }...) (目前)
- 2013年3月30日 (六) 04:16 (差異 | 歷史) . . (+887) . . 新 SCJP 1.6版考題 117 (新頁面: Given: 11. class Converter{ 12. public static void main(String[] args){ 13. Integer i = args[0]; 14. int j = 12; 15. System.out.println("It is " + (j==i) + " that j==i.")...) (目前)
- 2013年3月30日 (六) 04:15 (差異 | 歷史) . . (+1,071) . . 新 SCJP 1.6版考題 118 (新頁面: Given 10. class Foo{ 11. static void alpha(){→more code here:} 12. void beta() {→more code here:) 13. } Which two statements are true? (Choose two.) A. Foo.beta...) (目前)
- 2013年3月30日 (六) 04:11 (差異 | 歷史) . . (+705) . . 新 SCJP 1.6版考題 119 (新頁面: Given: 11. public static void main(String[] args){ 12. String str = "null"; 13. if (str == null) { 14. System.out.println("null"); 15. }else (str.length() == 0) { 16. ...) (目前)
- 2013年3月30日 (六) 04:09 (差異 | 歷史) . . (+1,109) . . 新 SCJP 1.6版考題 120 (新頁面: Given: 1. public class GC{ 2. private Object o; 3. private void doSomethingElse(Object obj){o = obj;} 4. public void doSomething(){ 5. Object o = new Object(); 6. ...) (目前)
- 2013年3月30日 (六) 04:06 (差異 | 歷史) . . (+901) . . 新 SCJP 1.6版考題 121 (新頁面: Given: 11. public class Test{ 12. public enum Dogs {collie, harrier, shepherd}, 13. public static void main(String[] args){ 14. Dogs myDog = Dogs.shepherd; 15. switch...) (目前)
- 2013年3月30日 (六) 04:04 (差異 | 歷史) . . (+1,131) . . 新 SCJP 1.6版考題 122 (新頁面: Given: 11. public void genNumbers(){ 12. ArrayList numbers = new ArrayList(); 13. for(int i=0; i<10; i++){ 14. int value = i * ((int)Math.random()); 15. Integer intOb...) (目前)
- 2013年3月30日 (六) 04:02 (差異 | 歷史) . . (+869) . . 新 SCJP 1.6版考題 123 (新頁面: Given: 11. public static void parse(String str){ 12. try{ 13. float f = Float.parseFloat(str); 14. }catch(NumberFormatException nfe){ 15. f = 0; 16. }finally{ 17....) (目前)
- 2013年3月30日 (六) 04:01 (差異 | 歷史) . . (+1,123) . . 新 SCJP 1.6版考題 124 (新頁面: Given: 11. static void test() throws RuntimeException{ 12. try{ 13. System.out.print("test "); 14. throw new RuntimeException(); 15. } 16. catch(Exc...) (目前)
- 2013年3月30日 (六) 03:59 (差異 | 歷史) . . (+891) . . 新 SCJP 1.6版考題 125 (新頁面: Given: 33. try{ 34. //some code here 35. }catch(NullPointerException el){ 36. System.out.print("a"); 37. }catch(Exception e2){ 38. System.out.print("b"); 39. }f...) (目前)
- 2013年3月30日 (六) 03:58 (差異 | 歷史) . . (+857) . . 新 SCJP 1.6版考題 126 (新頁面: Given: 31. //some code here 32. try{ 33. //some code here 34. }catch(Some Exception se) { 35. //some code here 36. }finally{ 37. //some code here 38. } Under which ...) (目前)
- 2013年3月30日 (六) 03:55 (差異 | 歷史) . . (+955) . . 新 SCJP 1.6版考題 127 (新頁面: Given: 1. public class Donkey2{ 2. public static void main(Stnng[] args){ 3. boolean assertsOn = true; 4. assert(assertsOn): assertsOn = true; 5. if(assertsOn){ 6....) (目前)
- 2013年3月30日 (六) 03:52 (差異 | 歷史) . . (+1,237) . . 新 SCJP 1.6版考題 128 (新頁面: Given: 1. public class A{ 2. public void Method1(){ 3. try{ 4. B b = new B(); 5. b.Method2(); 6. //more code here 7. }catch(TestException te){ 8. throw new Runti...) (目前)
- 2013年3月30日 (六) 03:49 (差異 | 歷史) . . (+778) . . 新 SCJP 1.6版考題 129 (新頁面: Given: 11. Float pi = new Float(3.14f); 12. if(pi > 3){ 13. System.out.print("pi is bigger than 3. "); 14. } 15. else{ 16. System.out.print("pi is not bigger than 3. "); 17...) (目前)
- 2013年3月30日 (六) 03:47 (差異 | 歷史) . . (+934) . . 新 SCJP 1.6版考題 130 (新頁面: Given: 11. static void test(){ 12. try{ 13. String x = null; 14. System.out.print(x.toString() + " "); 15. } 16. finally{System.out.print("finally ");} 17. } 1...) (目前)
- 2013年3月30日 (六) 03:46 (差異 | 歷史) . . (+978) . . 新 SCJP 1.6版考題 131 (新頁面: Given: 11. static void test() throws Error{ 12. if(true) throw new AssertionError(); 13. System.out.print("test "); 14. } 15. public static void main(String[] args){ 16. t...) (目前)
- 2013年3月30日 (六) 03:43 (差異 | 歷史) . . (+1,026) . . 新 SCJP 1.6版考題 132 (新頁面: Given: 1. class TestException extends Exception{} 2. class A{ 3. public String sayHello(String name) throws TestException{ 4. if(name == null) throw new TestException(), 5....) (目前)
- 2013年3月30日 (六) 03:42 (差異 | 歷史) . . (+1,128) . . 新 SCJP 1.6版考題 133 (新頁面: Given: 10. public class ClassA{ 11. public void methodA(){ 12. ClassB classB = new ClassB(); 13. classB.getValue(); 14. } 15. } And: 20. class ClassB{ 21. public ClassC...) (目前)
(最新 | 最舊) 檢視 (較新 50 筆 | 較舊 50 筆) (20 | 50 | 100 | 250 | 500)