class A{
public static void main(String[]args){
int = 0;
try{
i = Integer.parseInt(args[0]);
}
catch()
System.out.println("this value of i is" + i);
}
如果发生异常,如何使用 toString 打印异常。我在这里假设只有一个命令行参数。