Java 常見的錯誤與陷阱

Java 程式

簡介

運算式

分枝

迴圈

陣列

函數

遞迴

錯誤處理

物件導向

封裝

繼承

多型

技巧

函式庫

字串

數學

正規表達式

容器

檔案

網路

資料庫

視窗

Thread

Listener

錯誤陷阱

相關檔案

相關資源

教學錄影

Eclipse

考題解答

訊息

相關網站

參考文獻

最新修改

簡體版

English

常見錯誤 1

  int a = 2;
  if (a = 1)
     System.out.println("a = 1");
  else
     System.out.println("a != 1);
  System.out.println("after if : a = "+a);

執行結果

  a = 1
  after if : a = 1

說明:應該是 if (a == 1) 而非 if (a = 1)

Facebook

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License