如果程序发生异常,系统首先创建异常对象交给运行时系统,再由系统寻找代码处理异常,共经历抛出异常、捕获异常和处理异常几个过程。下列程序段会发生异常:
class Rdd
{
public static void main(String []args)
{
int i=9;
int j=9;
int s=39/(i-j);
}
}
java异常处理通过五个关键字来实现:try,catch,throw,throws,finally.
时间: 2024-10-12 12:32:15
如果程序发生异常,系统首先创建异常对象交给运行时系统,再由系统寻找代码处理异常,共经历抛出异常、捕获异常和处理异常几个过程。下列程序段会发生异常:
class Rdd
{
public static void main(String []args)
{
int i=9;
int j=9;
int s=39/(i-j);
}
}
java异常处理通过五个关键字来实现:try,catch,throw,throws,finally.