這可能是一個非常簡單的答案,但我甚至不知道如何搜索以找到它,所以我認爲我最好問。在整個Java類中使用變量
我真的不明白如何創建一個變量(特別是一個數組),我可以在整個Java程序中使用?變量需要從多個方法中訪問,並且它的大小由用戶輸入(args)設置。任何人都可以對此有所瞭解嗎?歡呼任何幫助。
Public class example{
//this is the array that needs accessing from multiple places
int anArray[][];
public static void main(String args[]){
int size = 5;
add1(size);
add2(size);
}
public static void add1(int size){
//seeing as the size of the array is being defined by the user input, it's created here after being passed the size argument.
}
public static void add2(int size){
//add more content to the array here
}
}
使其靜態休息一下就好了。 Protip:學習面向對象的編程範例 – x4rf41 2013-03-04 13:49:45
它是一個常量數組嗎? – user1428716 2013-03-04 13:50:13
沒有'int anArray [] []''語法錯誤'? – 2013-03-04 14:20:22