看板 java 關於我們 聯絡資訊
問個弱弱的問題 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); 省略 } }; -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 118.163.106.192 ※ 文章網址: http://www.ptt.cc/bbs/java/M.1405767188.A.063.html
luoqr:compile error 的例子 07/19 18:54
cyclone350:寫程式習慣? 不過你這個例子 compile 不會過吧? 07/19 20:37
mozzan:區域變數初始值要給,不過這例子看起來沒啥意義 07/19 21:46
Aztecs:duplicate declaration: lab 07/19 23:02