首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2ME开发 >

新手遇到的有关问题,希望有大神来帮忙

2012-11-06 
新手遇到的问题,希望有大神来帮忙//如果IOException发生的话,那么4是否输出?public void fun(){int itry{

新手遇到的问题,希望有大神来帮忙
//如果IOException发生的话,那么4是否输出?
public void fun()
{
int i;
try
{
i=System.in.read();
System.out.println("1");
}catch(IOException e)
{
System.out.println("2");
}
finally
{
System.out.println("3");
}
System.out.println("4");
}


[解决办法]
因为用try catch捕获了IO异常,所以出现IO异常的话,会执行catch中的代码,而程序不会退出,所以会继续执行System.out.println("4");

但如果有非IO异常产生,那么程序会终止,也就不会执行到System.out.println("4");这句了。
楼主可以这样改测试一下:

Java code
public void fun() throws SQLException {        int i;        try {            i = System.in.read();            System.out.println("1");            throw new SQLException("the SQL Exception");        } catch (IOException e) {            System.out.println("2");        } finally {            System.out.println("3");        }        System.out.println("4");    } 

热点排行