java關鍵字finally不管是否出現異常,finally子句總是在區塊完成之前執行。下面透過實作程式碼來跟大家介紹Java關鍵字finally相關知識,需要的的朋友參考下吧
1.如果執行了try塊沒有異常,則繼續運行finally塊中的語句,即使try塊通過return,break,或continue於最後的語句退出,finally中的語句也是會執行的。
總結:
不管是否出現異常,finally子句總是在區塊完成之前執行。
程式碼:
import java.util.Scanner; public class pideByTwo{ 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!"); } } }
以上是關於Java中關鍵字finally的程式碼範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!