亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

SUN認證

Sun認證Java程序員SCJP考題常見陷阱

時間:2024-08-10 09:12:17 SUN認證 我要投稿
  • 相關(guān)推薦

Sun認證Java程序員(SCJP)考題常見陷阱集合

  (1) Two public classes in the same file. (illegal)

Sun認證Java程序員(SCJP)考題常見陷阱集合

  同一個文件里有兩個public類。(非法)

  (2) Main method calling a non-static method. (illegal)

  在main(String[] args)方法內(nèi)調(diào)用一個非靜態(tài)方法。(非法)

  (3) Methods with the same name as the constructor(s). (這種題常有)

  與Constructor(s)有相同名字的方法。

  (4) Thread initiation with classes that do not have a run() method.

  初始化了一個沒有run()方法的線程類。

  (5) Local inner classes trying to access non-final vars. (illegal)

  內(nèi)部類嘗試訪問非final變量(非法)

  (6) Case statements with values out of permissible range. (byte,int, short,chat)

  選擇語句case中,沒有使用允許的值。如(byte、int、short、char)等

  (7) Math class being an option for immutable classes !! (totally wrong!)

  Math類作為不可改變類。(完全錯誤)

  (8) instanceOf is not same as instanceof.

  instanceOf不是instanceof。

  (9) Private constructors. (legal)

  私有的Constructor。(合法)

  (10)An assignment statement which looks like a comparison.

  一個賦值語句看起來像比較語句。

  比如說if(a=true),和if(a==true)。對于這種題眼睛亮一點。

  (11)System.exit() in try-catch-finally blocks. (finally不會執(zhí)行)

  在try-catch-final塊中的退出語句。(finally不會執(zhí)行)

  (12)Order of try-catch-finally blocks matters. (若順序錯的話: error: No try before catch)

  try-catch-final塊的順序問題。

  (13)main() can be declared final. (OK)

  main()方法可以聲明為final。

  (14) -0.0 == 0.0 is true.

  (15)A class without abstract methods can still be declared abstract.

  沒有抽象方法的類,仍然可以定義為抽象類。

【Sun認證Java程序員SCJP考題常見陷阱】相關(guān)文章:

sun認證java程序員08-05

sun認證java程序員須知Java日志框架09-05

sun認證java程序員考試科目10-01

sun認證Java枚舉常見7種用法08-13

sun認證java程序員考試試題09-13

Sun認證Java程序員考試技巧分享09-14

Sun java認證考試答案10-23

SUN JAVA程序員和開發(fā)員(SCJD)認證07-25

sun認證java基礎(chǔ)模擬試題09-16

Sun-Java程序員認證考試題庫10-26