使用者貢獻
(最新 | 最舊) 檢視 (較新 50 筆 | 較舊 50 筆) (20 | 50 | 100 | 250 | 500)
- 2013年3月30日 (六) 03:41 (差異 | 歷史) . . (+1,126) . . 新 SCJP 1.6版考題 134 (新頁面: Given: 5. classA{ 6. void foo() throws Exception{throw new Exception();} 7. } 8. class SubB2 extends A{ 9. void foo(){System.out.println("B ");} 10. } 11. class Tester{ 12...) (目前)
- 2013年3月30日 (六) 03:27 (差異 | 歷史) . . (+913) . . 新 SCJP 1.6版考題 135 (新頁面: Given: 84. try{ 85. ResourceConnection con = resourceFactory.getConnection(); 86. Results r = con.query("GET INFO FROM CUSTOMER"); 87. info = r.getData(); 88. con.close()...) (目前)
- 2013年3月30日 (六) 03:24 (差異 | 歷史) . . (+764) . . 新 SCJP 1.6版考題 136 (新頁面: Given: 11. public static void main(String[] args){ 12. try{ 13. args = null; 14. args[0] = "test"; 15. System.out.println(args[0]); 16. }catch(Exception ex) { 1...) (目前)
- 2013年3月30日 (六) 03:23 (差異 | 歷史) . . (+1,069) . . 新 SCJP 1.6版考題 137 (新頁面: Given: 11. class X{public void foo(){System.out.print("X ");}} 12. 13. public class SubB extends X{ 14. public void foo() throws RuntimeException{ 15. uper.foo(); 16. if(t...) (目前)
- 2013年3月30日 (六) 03:22 (差異 | 歷史) . . (+1,185) . . 新 SCJP 1.6版考題 138 (新頁面: Which two code fragments are most likely to cause a StackOverflowError? (Choose two.) A. int[] x = {1, 2, 3, 4, 5}; for(int y=0; y<6; y++) System.out.println(x[y]); ...) (目前)
- 2013年3月30日 (六) 03:20 (差異 | 歷史) . . (+1,018) . . 新 SCJP 1.6版考題 139 (新頁面: Given a method that must ensure that its parameter is not null: 11. public void someMethod(Object value){ 12. //check for null value ... 20. System.out.println(value.getClass(...) (目前)
- 2013年3月30日 (六) 03:19 (差異 | 歷史) . . (+1,449) . . 新 SCJP 1.6版考題 140 (新頁面: Given: 1. public class A{ 2. public void method1(){ 3. B b = new B(); 4. b.method2(); 5. //more code here 6. } 7. } 1. public class B{ 2. public void method...) (目前)
- 2013年3月30日 (六) 03:15 (差異 | 歷史) . . (+1,299) . . 新 SCJP 1.6版考題 141 (新頁面: Given: 11. class A{ 12. public void process(){System.out.print("A, ");} 13. class B extends A{ 14. public void process() throws IOException{ 15. super.process(); 16. ...) (目前)
- 2013年3月30日 (六) 03:15 (差異 | 歷史) . . (+1,426) . . 新 SCJP 1.6版考題 210 (新頁面: Given: 11. public class Person{ 12. private String name, comment; 13. private int age; 14. public Person(String n, int a, String c){ 15. name = n; age = a; comment = c;...) (目前)
- 2013年3月30日 (六) 03:12 (差異 | 歷史) . . (+1,180) . . 新 SCJP 1.6版考題 142 (新頁面: Assuming that the serializeBanana() and the deserializeBanana() methods will correctly use Java serialization and given: 13. import java.io.*; 14. class Food implements Serializabl...) (目前)
- 2013年3月30日 (六) 03:10 (差異 | 歷史) . . (+578) . . 新 SCJP 1.6版考題 143 (新頁面: Given: System.out.printf("Pi is approximately %f and E is approximately %b, Math.PI, Math.E); Place the values where they would appear in the output. 檔案:SCJP143-1.png <div ...) (目前)
- 2013年3月30日 (六) 03:09 (差異 | 歷史) . . (+597) . . 新 SCJP 1.6版考題 144 (新頁面: Which capability exists only in java.io.BufferedWriter? A. Closing an open stream. B. Flushing an open stream. C. Writing to an open stream. D. Writing a line separator to an ...) (目前)
- 2013年3月30日 (六) 03:08 (差異 | 歷史) . . (+1,780) . . 新 SCJP 1.6版考題 145 (新頁面: Given that the current directory is empty/假設目前的目錄為空的, and that the user has read and write permissions, and the following並且使用者有讀與寫的權限...) (目前)
- 2013年3月30日 (六) 03:05 (差異 | 歷史) . . (+1,006) . . 新 SCJP 1.6版考題 146 (新頁面: Given: 1. import java.io.*; 2. public class Foo implements Serializable{ 3. public int x, y; 4. public Foo(int x, int y){this.x = x; this.y = y;} 5. 6. private void writeO...) (目前)
- 2013年3月30日 (六) 03:04 (差異 | 歷史) . . (+932) . . 新 SCJP 1.6版考題 147 (新頁面: Given: 1. public class LineUp{ 2. public static void main(String[] args){ 3. double d = 12.345; 4. //insert code here 5. } 6. } Which code fragment, inserted a...) (目前)
- 2013年3月30日 (六) 03:03 (差異 | 歷史) . . (+1,138) . . 新 SCJP 1.6版考題 148 (新頁面: Given: 12. import java.io.*; 13. public class Forest implements Serializable{ 14. private Tree tree = new Tree(); 15. public static void main(String[] args){ 16. Forest f...) (目前)
- 2013年3月30日 (六) 03:01 (差異 | 歷史) . . (+922) . . 新 SCJP 1.6版考題 149 (新頁面: Place the Fragments into the program, so that the program will get lines from a text file. display them, and then close all the resources. 檔案:SCJP149-1 2.png <div class="t...) (目前)
- 2013年3月30日 (六) 02:58 (差異 | 歷史) . . (+1,255) . . 新 SCJP 1.6版考題 150 (新頁面: Given: 5. import java.io.*; 6. public class Talk{ 7. public static void main(String[] args){ 8. Console c = new Console(); 9. String pw; 10. System.out.print("passwo...) (目前)
- 2013年3月30日 (六) 02:57 (差異 | 歷史) . . (+974) . . 新 SCJP 1.6版考題 151 (新頁面: Given that the current directory is empty, and that the user has read and write privileges to the current directory, and the following: 1. import java.io.*; 2. public class Maker{...) (目前)
- 2013年3月30日 (六) 02:55 (差異 | 歷史) . . (+1,289) . . 新 SCJP 1.6版考題 152 (新頁面: Which three statements concerning the use of the java.io.Serializable interface are true? (Choose three.) A. Objects from classes that use aggregation cannot be serialized. B. An ...) (目前)
- 2013年3月30日 (六) 02:54 (差異 | 歷史) . . (+557) . . 新 SCJP 1.6版考題 153 (新頁面: Chain these constructors to create objects to read from a file named "in" and to write to a file named "out". 檔案:SCJP153-1.png <div class="toccolours mw-collapsible mw-collap...) (目前)
- 2013年3月30日 (六) 02:53 (差異 | 歷史) . . (+759) . . 新 SCJP 1.6版考題 154 (新頁面: 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? (Choose two.) A. String s = c.readLine(); B. char[]...) (目前)
- 2013年3月30日 (六) 02:52 (差異 | 歷史) . . (+906) . . 新 SCJP 1.6版考題 155 (新頁面: The doesFileExist method takes an array of directory names representing a path from the root filesystem and a file name. The method returns true if the file exists, false if it do...) (目前)
- 2013年3月30日 (六) 02:50 (差異 | 歷史) . . (0) . . 新 檔案:SCJP155.png (目前)
- 2013年3月30日 (六) 02:45 (差異 | 歷史) . . (+398) . . 新 SCJP 1.6版考題 156 (新頁面: <DD>檔案:SCJP156-1.png <div class="toccolours mw-collapsible mw-collapsed"> <span style="font-size:medium;">解答</span> ---- <div class="mw-collapsible-content"> <span style=...) (目前)
- 2013年3月30日 (六) 02:44 (差異 | 歷史) . . (0) . . 新 檔案:SCJP156-1.png (目前)
- 2013年3月30日 (六) 02:41 (差異 | 歷史) . . (+1,121) . . 新 SCJP 1.6版考題 157 (新頁面: Given that c is a reference to a valid java.io.Console object, and: 11. String pw = c.readPassword("%s", "pw: "); 12. System.out.println("got " + pw); 13. String name = c.readLine(...) (目前)
- 2013年3月30日 (六) 02:39 (差異 | 歷史) . . (+748) . . 新 SCJP 1.6版考題 158 (新頁面: Given a vaid DateFormat object named df, and 16. Date d = new Date(0L); 17. String ds = "December 15, 2004"; 18. //insert code here What updates d's value with the date represen...) (目前)
- 2013年3月30日 (六) 02:38 (差異 | 歷史) . . (+866) . . 新 SCJP 1.6版考題 159 (新頁面: Given: 11. double input = 314159.26; 12. NumberFormat nf = NumberFormat.getInstance(Locale.ITALIAN); 13. String b; 14. //insert code here Which code, inserted at line 14, sets ...) (目前)
- 2013年3月30日 (六) 02:37 (差異 | 歷史) . . (+1,187) . . 新 SCJP 1.6版考題 160 (新頁面: Given: 22. StringBuilder sb1 = new StringBuilder("123"); 23. String s1 = "123"; 24. //insert code here 25. System.out.println(sb1 + " " + s1); Which code fragment, inserted at ...) (目前)
- 2013年3月30日 (六) 02:35 (差異 | 歷史) . . (+936) . . 新 SCJP 1.6版考題 161 (新頁面: Given: 1. public class Boxer1{ 2. Integer i 3. int x; 4. public Boxer1(int y){ 5. x = i + y; 6. System.out.println(x); 7. } 8. public static void main(String...) (目前)
- 2013年3月30日 (六) 02:32 (差異 | 歷史) . . (+978) . . 新 SCJP 1.6版考題 162 (新頁面: Given: 11. public static void main(String[] args){ 12. Integer i = new Integer(1) + new Integer(2); 13. switch(i){ 14. case 3: System.out.println("three"); break; 15. ...) (目前)
- 2013年3月30日 (六) 02:29 (差異 | 歷史) . . (+1,129) . . 新 SCJP 1.6版考題 163 (新頁面: Given: 1. public class TestString3{ 2. public static void main(String[] args){ 3. //insert code here 5. System.out.println(s); 6. } 7. } Which two code fragments,...) (目前)
- 2013年3月30日 (六) 02:28 (差異 | 歷史) . . (+1,410) . . 新 SCJP 1.6版考題 164 (新頁面: Given: 1. d is a valid, non-null Date object 2. df is a valid, non-null DateFormat object set to the current locale What outputs the current locale's country name and the appropr...) (目前)
- 2013年3月30日 (六) 02:26 (差異 | 歷史) . . (+1,036) . . 新 SCJP 1.6版考題 165 (新頁面: Given: 5. import java.util.Date; 6. import java.text.DateFormat; 21. DateFormat df; 22. Date date = new Date(); 23. //insert code here 24. String s = df.format(date); Which c...) (目前)
- 2013年3月30日 (六) 02:24 (差異 | 歷史) . . (+1,305) . . 新 SCJP 1.6版考題 166 (新頁面: Given: 1. public class BuildStuff{ 2. public static void main(String[] args){ 3. Boolean test = new Boolean(true); 4. Integer x = 343; 5. Integer y = new BuildStuff...) (目前)
- 2013年3月30日 (六) 02:22 (差異 | 歷史) . . (+770) . . 新 SCJP 1.6版考題 167 (新頁面: Given: 11. String test = "Test A. Test B. Test C."; 12. //insert code here 13. String[] result = test.split(regex); Which regular expression, inserted at line 12, correctly spli...) (目前)
- 2013年3月30日 (六) 02:21 (差異 | 歷史) . . (+811) . . 新 SCJP 1.6版考題 168 (新頁面: Given: 11. public void testIfA(){ 12. if(testIfB("True")){ 13. System.out.println("True"); 14. else{ 15. System.out.println("Not true"); 16. } 17. } 18. public B...) (目前)
- 2013年3月30日 (六) 02:20 (差異 | 歷史) . . (+1,034) . . 新 SCJP 1.6版考題 169 (新頁面: Given: 12. NumberFormat nf = NumberFormat.getInstance(); 13. nf.setMaximumFractionDigits(4); 14. nf.setMinimumFractionDigits(2); 15. String a = nf.format(3.1415926); 16. String b...) (目前)
- 2013年3月30日 (六) 02:15 (差異 | 歷史) . . (+763) . . 新 SCJP 1.6版考題 170 (新頁面: Given: 12. String csv = "Sue,5,true,3"; 13. Scanner scanner = new Scanner(csv); 14. scanner.useDelimiter(","); 15. int age = scanner.nextInt(); What is the result? A. Compila...) (目前)
- 2013年3月30日 (六) 02:07 (差異 | 歷史) . . (+613) . . 新 SCJP 1.6版考題 171 (新頁面: given: 11. String test = "a1b2c3"; 12. String[] tokens = test.split("\\d"); 13. for(String s : tokens) System.out.print(s + " "); What is the result? A. a b c B. 1 2 3 C. ...) (目前)
- 2013年3月30日 (六) 02:03 (差異 | 歷史) . . (+1,281) . . 新 SCJP 1.6版考題 172 (新頁面: Given: 33. Date d = new Date(0); 34. String ds = "December 15, 2004"; 35. //insert code here 36. try{ 37. d = df.parse(ds); 38. } 39. catch(ParseException e){ 40. System.o...) (目前)
- 2013年3月30日 (六) 02:02 (差異 | 歷史) . . (+1,041) . . 新 SCJP 1.6版考題 173 (新頁面: Given: 11. public class Yikes{ 12. 13. public static void go(Long n){System.out.print("Long ");} 14. public static void go(Short n){System. outprint("Short ");} 15. public ...) (目前)
- 2013年3月30日 (六) 02:01 (差異 | 歷史) . . (+750) . . 新 SCJP 1.6版考題 174 (新頁面: Given: 12. Date date = new Date(); 13. df.setLocale(Locale.ITALY); 14. String s = df.format(date); The variable df is an object of type DateFormat that has been initialized in lin...) (目前)
- 2013年3月30日 (六) 02:00 (差異 | 歷史) . . (+877) . . 新 SCJP 1.6版考題 175 (新頁面: two scenarios are NOT safe to replace a StringBuffer object with a StringBuilder object? (Choose two.) A. When using versions of Java technology earlier than 5.0. B. When sharing ...) (目前)
- 2013年3月30日 (六) 01:59 (差異 | 歷史) . . (+451) . . 新 SCJP 1.6版考題 176 (新頁面: <DD>檔案:SCJP176-1.png <div class="toccolours mw-collapsible mw-collapsed"> <span style="font-size:medium;">解答</span> ---- <div class="mw-collapsible-content"> <span style=...) (目前)
- 2013年3月30日 (六) 01:56 (差異 | 歷史) . . (+804) . . 新 SCJP 1.6版考題 177 (新頁面: Given: 11. String test = "This is a test"; 12. String[] tokens = test.split(“\s"); 13. System.out.println(tokens.length); What is the result? A. 0 B. 1 C. 4 D. Compila...) (目前)
- 2013年3月30日 (六) 01:55 (差異 | 歷史) . . (+1,522) . . 新 SCJP 1.6版考題 178 (新頁面: Given: 1. public class Target{ 2. private int i = 0; 3. public int addOne(){ 4. return ++i; 5. } 6. } And: 1. public class Client{ 2. public static void main(Stri...) (目前)
- 2013年3月30日 (六) 01:53 (差異 | 歷史) . . (+585) . . 新 SCJP 1.6版考題 179 (新頁面: 檔案:SCJP179-1.png <div class="toccolours mw-collapsible mw-collapsed"> <span style="font-size:medium;">解答</span> ---- <div class="mw-collapsible-content"> <span style="fon...) (目前)
- 2013年3月30日 (六) 00:48 (差異 | 歷史) . . (+439) . . 新 SCJP 1.6版考題 180 (新頁面: <DD>檔案:SCJP180-1.png <DD>檔案:SCJP180-2 2.png <DD>檔案:SCJP180-3 2.png <div class="toccolours mw-collapsible mw-collapsed"> <span style="font-size:medium;">解...) (目前)
(最新 | 最舊) 檢視 (較新 50 筆 | 較舊 50 筆) (20 | 50 | 100 | 250 | 500)