在Java中,可以使用關鍵字 static
來定義全局變量數組。下面是一個示例:
public class MyClass {
// 定義全局變量數組
static int[] myArray = {1, 2, 3, 4, 5};
public static void main(String[] args) {
// 訪問全局變量數組
for (int i = 0; i < myArray.length; i++) {
System.out.println(myArray[i]);
}
}
}
在上面的示例中,myArray
是一個全局變量數組,可以在 main
方法中直接訪問和使用它。