一个方法里能不能有两次try catch

一个方法里能不能有两次try catch

public int[] insertData() {

System.out.println("要输入几个成绩");

Scanner sc = new Scanner(System.in);

try {

int k = sc.nextInt();

} catch (java.util.InputMismatchException e) {

System.out.println("输入的数据有误,请重新");

sc.next();

}

int[] a = new int[k];

for (int i = 0; i < a.length - 1; i++) {

System.out.print("请输入第" + (i + 1) + "个数据:");

try {

a[i] = sc.nextInt();

} catch (java.util.InputMismatchException e) {

System.out.println("输入的数据有误,请重新");

sc.next();

continue;

}

}

return


a;

}



正在回答

登陆购买课程后可参与讨论,去登陆

1回答

同学,你好,一个方法里可以存在两个try catch语句块,方法里对try catch语句块没有数量的限制。如果解决了你的疑惑,请采纳,祝学习愉快~ 


  • jimam 提问者 #1
    但是像我这么写的话 下面的int[] a = new int[k]; 识别不到 k 我不知道有没有什么方法
    2019-07-23 16:30:29
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师