每當我介紹數組,我得到這個錯誤。我嘗試了不同的數組類型......但沒有運氣。LogCat中的NullPointerException?
public class Classifytestclass2 extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
int test2[] = null;
for(int i=0;i<50;i++){
test2[0]=1;
}
}
}
編輯: 忘了提,整個應用程序崩潰(強制關閉。)
slukian已經指出了導致錯誤的問題,儘管你也應該知道你只是將test2的第一個元素設置爲'1'50次,你可能想'test2 [i] = 1;' – goto10
接受它作爲答案,因爲它解決了你的問題 – Sameer
我做到了,但仍然有錯誤...現在修復了 – user947659