[问题] 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