所謂的有效範圍,就是指變數在程式中可以被使用的範圍。
Java支援四種不同存取範圍的變數:
class A{ int a; //instance static int b; // class void method() { int x; //local for(int i=0; i < 10; i++) //i為y block } } }