下列【1】、【1】、【3】、【4】注释标注的哪行代码有错误?class E {public static void main(String args[]){int n = 0,m = 0,t = 1000;try{ m = Integer.parseInt("8888"); //【1】n = Integer.parseInt("ab89"); //【2】t = Integer.parseInt("1289"); //【3】}catch(Exception e) {}//【4】catch(NumberFormatException e) {}}}
A. 【1】
B. 【2】
C. 【3】
D. 【4】
下列【1】、【2】、【3】、【4】注释标注的哪行代码有错误?class E {public static void main(String args[]){int n = 0,m = 0,t = 1000;try{m = 8888;//【1】throw new NumberFormatException("right"); //【2】t = 1000;//【3】}catch(Exception e) {}//【4】}}
A. 【1】
B. 【2】
C. 【3】
D. 【4】
下列【1】、【2】、【3】、【4】注释标注的哪行代码有错误?class E {public static void main(String args[]){int n = 0,m = 0,t = 1000;try{ m = Integer.parseInt("8888");n = Integer.parseInt("ab89"); //【1】}n =100;//【2】catch(NumberFormatException e) {}try{ m = Integer.parseInt("aaaa"); //【3】n = Integer.parseInt("8999"); //【4】}catch(NumberFormatException e) {}}}
A. 【1】
B. 【2】
C. 【3】
D. 【4】
下列【1】、【2】、【3】、【4】注释标注的哪行代码有错误?class E {public static void main(String args[]){int n = 0,m = 0,t = 1000;try{ m = Integer.parseInt("8888"); //【1】n = Integer.parseInt("ab89"); //【2】t = Integer.parseInt("1289"); //【3】}catch(Exception e) {}//【4】catch(NumberFormatException e) {}}}
A. 【1】
B. 【2】
C. 【3】
D. 【4】