[問題] xxx = null

作者: dharma (達)   2014-07-19 18:53:06
問個弱弱的問題
Java很多時候都會出現 XX YYY = null;
例如下面例子
原因是什麼啊
thank
public class Main {
public static void main(String args[]) {
JFrame frame = new JFrame("Welcome");
String picPath = "C:\\xxx.jpg";
Icon icon = new ImageIcon(picPath);
JLabel lab = null;
JLabel lab = new JLabel("", icon, JLabel.CENTER);
省略
}
};
作者: luoqr (.....)   2014-07-19 18:54:00
compile error 的例子
作者: cyclone350 (老子我最神)   2014-07-19 20:37:00
寫程式習慣? 不過你這個例子 compile 不會過吧?
作者: mozzan (mozzan)   2014-07-19 21:46:00
區域變數初始值要給,不過這例子看起來沒啥意義
作者: Aztecs (scetzA)   2014-07-19 23:02:00
duplicate declaration: lab

Links booklink

Contact Us: admin [ a t ] ucptt.com