为什么ArithmeticException后一定要跟个东西?难道这样就能实例化吗?
复习:Java 方法声明(a method declaration) 的格式是:void show(String s ){ System.out.println(s);}注意圆括号内 参数的声明包括:类型 String + 这种类型的变量 s.该方法签名 (the method declared above) 的格式是:show(String ) 可以省略/不出示变量。甲骨文Oracle 有关Java 教程写到:catch 代码块(The catch Blocks)try { .