编写处理异常下,在/**$1*/处有误请改正。 1. public class pro6_2 { 2. public static void main(String args[]) 3. { 4. try{ 5. int ar[]=null; 6. System.out.println(ar.length); 7. } 8. catch(ArrayIndexOutOfBoundsException e) /**$1*/ 9. { 10. System.out.println("Exception:"+e); 11. } 12. } 13. }