如果执行了try块没有异常,则继续运行finally块中的语句,即使try块通过return,break,或者continue于最后的语句退出,finally中的语句也是会执行的。总结:不管是否出现异常,finally子句总是在块完成之前执
如果执行了try块没有异常,则继续运行finally块中的语句,即使try块通过return,break,或者continue于最后的语句退出,finally中的语句也是会执行的。
总结:
不管是否出现异常,finally子句总是在块完成之前执行。
代码:
import java.util.Scanner;public class DivideByTwo{public static void main(String args[]){Scanner in=new Scanner(System.in);int x;System.out.println("please enter integer:");try{String oneline=in.nextLine();x=Integer.ParseInt(oneLine);System.out.println("half of x is"+(x/2));}catch(NumberFORMatException e){System.out.println(e);} finally{System.out.println("hello world!");}}}
--结束END--
本文标题: Java关键字finally_动力节点Java学院整理
本文链接: https://lsjlt.com/news/226829.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0