数组索引越界异常
public static void main(String[] args)throws Exception {
int a=Integer.parseInt(args[0]);
int b=Integer.parseInt(args[1]);
int c=Integer.parseInt(args[3]);
出现java.lang.ArrayIndexOutOfBoundsException,程序后面需要用到a、b、c这三个参数,好像不能直接用try...catch。这要怎么解决呢??