tsld045.htm

来自「an excellent java tutorial for the ones 」· HTM 代码 · 共 58 行

HTM
58
字号

<HTML>

<HEAD>
<META HTTP-EQUIV="Context-Type" CONTEXT="text/html;charset=windows-1252">
<meta name="GENERATOR" content="Microsoft Internet Assistant for PowerPoint 97">
 <TITLE>try - catch - finally Statement</TITLE> 
</HEAD>

<BODY     >

 <H1>try - catch - finally Statement</H1> 
 <P><UL>
try {
<BR></UL><UL>
       // block of code that may throw an  exception.
</UL><UL>
       [ return; ]
</UL><UL>
      } 
</UL><UL>

</UL><UL>
      catch (ExceptionType1 e) {   
</UL><UL>
           // Exception handler for type1
</UL><UL>
      } 
</UL><UL>
      catch (ExceptionType2 e) {
</UL><UL>
           // Exception handler for type2
</UL><UL>
           throw(e) // re-throw e Exception
</UL><UL>
      }	
</UL><UL>
      finally {
</UL><UL>
      // clean-up code
</UL><UL>
     }</UL></P>
<P></P> 
<P>
<TABLE>
  <TD HEIGHT=100 WIDTH=100> <A HREF="tsld044.htm">Previous slide</A> </TD>
  <TD HEIGHT=100 WIDTH=100> <A HREF="tsld046.htm">Next slide</A> </TD>
  <TD HEIGHT=100 WIDTH=150> <A HREF="tsld001.htm">Back to first slide</A> </TD>
  <TD HEIGHT=100 WIDTH=150> <A HREF="sld045.htm">View graphic version</A> </TD>
</TABLE>
<BR>
</P>



</Body>
</HTML>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?