java學習筆記(十八)代碼塊

代碼塊 1:普通代碼塊:直接定義在方法中的代碼 public class MainDemo01 { public static void main(String args[]){ { int c = 40; System.out.println(c); } int c =100; System.out.println(c); } } 輸出爲: F:\java>javac
相關文章
相關標籤/搜索