谈谈finally的作用。
谈谈finally的作用。
相关考题:
在java中,惯用语捕获错误的语法try-catch-finally的下列描述正确的是() A.try-catch必须配对使用B.try可以单独使用C.try-finally可以配对使用D.在try-catch后如果定义了finally,则finally肯定会执行
Given1.publicclassFoo{2.publicstaticvoidmain(String[]args)}3.try{return;}4.finally{Syste.out.printIn(Finally”);}5.}6.}Whatistheresult()? A.Theprogramrunsandprintsnothing.B.Theprogramrunsandprints“Finally”.C.Thecodecomiles.Butanexceptionisthrownatruntime.D.Thecodewillnotcompilebecausethecatchblockismissing.
publicclassfoo{publicstaticvoidmain(string[]args)try{return;}finally{system.out.printIn(Finally”);}}Whatistheresult?() A.Theprogramrunsandprintsnothing.B.Theprogramrunsandprints“Finally”C.Thecodecompiles,butanexceptionisthrownatruntime.D.Thecodewillnotcompilebecausethecatchblockismissing.
publicclassFoo{publicstaticvoidmain(String[]args){try{return;}finally{System.out.println(Finally”);}}}Whatistheresult?() A.FinallyB.Compilationfails.C.Thecoderunswithnooutput.D.Anexceptionisthrownatruntime.
publicclassfoo{publicstaticvoidmain(stringargs)try{return;}finally{system.out.printIn(Finally”);}}Whatistheresult?() A.Theprogramrunsandprintsnothing.B.Theprogramrunsandprints“Finally”C.Thecodecompiles,butanexceptionisthrownatruntime.D.Thecodewillnotcompilebecausethecatchblockismissing.
下面程序输出的结果是什么? ( ) public class Quiz2 { public static void main(String args[]) { try {throw new MyException(); }catch(Exception e) { System.out.println("It's caught!"); }finally{ System.out.println("It's finally caught!"); } } } class MyException extends Exception{}A.It's finally caught!B.It's caught!C.It's caught!/It's finally caught!D.无输出
在java中,惯用语捕获错误的语法try-catch-finally的下列描述正确的是() A、try-catch必须配对使用B、try可以单独使用C、try-finally可以配对使用D、在try-catch后如果定义了finally,则finally肯定会执行
在Java中,关于捕获错误的语法try - catch - finally的说法正确的是() A、try – catch 必须配对使用B、try 可以单独使用C、try – finally 可以配对使用D、在 tru – catch 后如果定义了finally肯定会执行
在JAVA中,关于捕获错误的语法try-catch-finally的下列描述正确的是()。A、try-catch必须配对使用B、try可以单独使用C、try-finally可以配对使用,finally也可单独使用D、在try-catch后如果定义了finally,则finally肯定会执行
在try-catch-finally结构中,哪个说法不正确()A、可以存在多个catch语句块,表示可以捕捉多种异常B、不能同时没有catch语句块和finally语句块C、结构整体可以当作一条语句,从而可以嵌套在其他try-catch-finally结构中D、在try-catch-finally结构中,不发生异常,finally语句块不会执行
在C#语言中,下列异常处理结构中有错误的是()。A、catch{}finally{}B、try{}finally{}C、try{}catch{}finally{}D、try{}catch{}
在C#程序中〃下列用来处理异常的结构〃错误的是()。A、catch{}finally{}B、try{}finally{}C、try{}catch{}finally{}D、try{}catch{}
下面关于try、catch和finally语句块的组合使用,正确的是()A、try{,}B、try{,}finally{,}C、try{,}catch{,}finally{,}D、try{,}catch{,}catch{,}
问答题谈谈finally的作用。