第一个格式:
try
{
}
catch ()
{
}
第二个格式:
try
{
}
catch ()
{
}
finally
{
}
第三个格式:
try
{
}
finally
{
}
//记住一点:catch是用于处理异常。如果没有catch就代表异常没有被处理过,如果该异常是检测时异常。那么必须声明。
//出现异常要么抛(在方法后throws),要么try
class Demo
{
public void method() throws Exception
{
try
{
throw new Exception();
}
finally
{
//关资源。
}
}
}
class
{
public static void main(String[] args)
{
System.out.println("Hello World!");
}
}
异常其他格式
最新推荐文章于 2022-09-18 13:39:05 发布