标题: Java异常机制中用到的几个关键字含义 [打印本页] 作者: Frank_Ms1ZR 时间: 2016-7-27 07:10 标题: Java异常机制中用到的几个关键字含义 try: Opening exception-handling statement.
catch: Captures the exception.
finally: Runs its code before terminating the program.
throws: Lists the exceptions a method could throw.
Throw: Transfers control of the method to the exception handler.