谁有try-catch的代码

来源:1-3 Java中通过案例学习 try...catch...finally

花开半夏37

2016-11-07 12:54

就是老师课程里讲的

写回答 关注

2回答

  • 蝶梦疏妄
    2016-11-07 20:07:47
    已采纳

    那个,右边有资料下载,里面有老师讲的所有的代码

    花开半夏37

    非常感谢

    2016-11-30 17:10:17

    共 1 条回复 >

  • qq_那年繁华退却_04289466
    2016-11-07 13:07:40

    public int test3(){

    int divider=10;

    int result=100;

    try{

    while(divider>-1){

    divider--;

    result=result+100/divider;

    }

    }

    catch(Exception e){

    e.printStackTrace();//输出异常的具体信息

    System.out.println("抛出异常了");

    }finally{

    System.out.println("这是finally!!!哈哈!!");

    System.out.println("我是result,我的值是:"+result);

    }

    return 1111;

    }


Java入门第三季

Java中你必须懂得常用技能,不容错过的精彩,快来加入吧

409792 学习 · 4340 问题

查看课程

相似问题

try catch

回答 3

try catch

回答 1

try catch

回答 2

Try catch

回答 2

try...catch

回答 2