我的方案运行。 在该方案的中期,它只是说:
Exception in thread "main" java.lang.NullPointerException
at Example.main(Example.java:33)
我的守则是:
String [] iArray ;
String i ;
int counter=1 ; counteragain=-1, q;
do {
System.out.print ("
Item Code : ") ;
i = s.next();
if (i.equals ("0") ){
counter = 0 ;
} else {
System.out.print ("
Quantity: ") ;
q = s.nextInt() ;
counteragain++ ;
i = iArray[counteragain];
}
} while (counter!=0) ;
The line where I m getting the error is:
i = iArray[counteragain];
我为什么会发现这一错误? 我的同yn是否错了? 但是,为什么它管理我的方案?
任何帮助都会受到高度赞赏。