全局變量的作用範圍和順序

一.全局變量 Ⅰ.作用範圍:所有區間 Ⅱ.執行順序:由上到下,而不是同時指向所有區間 eg: public class test3{ public static void main(String[] args){ int a=1; while(a>=1&&a<=2){ System.out.println(a); //測試 a++; } while(a>=3&&a<=9){ System.out.
相關文章
相關標籤/搜索