在同一方法中使用 throws 和 try-catch
Usage of throws and try-catch in the same method
我们可以在同一个方法中使用 throws 和 try-catch 吗?
public class Main
{
static void t() throws IllegalAccessException {
try{
throw new IllegalAccessException("demo");
} catch (IllegalAccessException e){
System.out.println(e);
}
}
public static void main(String[] args){
t();
System.out.println("hello");
}
}
显示的错误是
Main.java:21: error: unreported exception IllegalAccessException; must be caught or declared to be thrown
t();
^
1 error
所以我想到修改代码,我在main()方法中添加了另一个throws语句,其余相同。
public class Main
{static void t() throws IllegalAccessException {
try{
throw new IllegalAccessException("demo");
} catch (IllegalAccessException e){
System.out.println(e);
}
}
public static void main(String[] args) throws IllegalAccessException{
t();
System.out.println("hello");
}
}
但现在我得到了想要的输出。
但是我有一些问题...
我们可以在单一方法中使用 throws 和 try-catch 吗?
在我的情况下是否需要添加两个throws语句,如果没有请告诉我添加的适当位置?
在你的代码中
void t() throws IllegalAccessException
您是在告诉编译器此代码抛出异常(是否抛出异常是另一回事),因此调用此方法的任何方法都必须捕获它或声明它 还 扔它等等等等
因为您实际上并没有从 t
中抛出异常,所以您可以删除声明。
void t()
我们可以在同一个方法中使用 throws 和 try-catch 吗?
public class Main
{
static void t() throws IllegalAccessException {
try{
throw new IllegalAccessException("demo");
} catch (IllegalAccessException e){
System.out.println(e);
}
}
public static void main(String[] args){
t();
System.out.println("hello");
}
}
显示的错误是
Main.java:21: error: unreported exception IllegalAccessException; must be caught or declared to be thrown
t();
^
1 error
所以我想到修改代码,我在main()方法中添加了另一个throws语句,其余相同。
public class Main
{static void t() throws IllegalAccessException {
try{
throw new IllegalAccessException("demo");
} catch (IllegalAccessException e){
System.out.println(e);
}
}
public static void main(String[] args) throws IllegalAccessException{
t();
System.out.println("hello");
}
}
但现在我得到了想要的输出。 但是我有一些问题...
我们可以在单一方法中使用 throws 和 try-catch 吗?
在我的情况下是否需要添加两个throws语句,如果没有请告诉我添加的适当位置?
在你的代码中
void t() throws IllegalAccessException
您是在告诉编译器此代码抛出异常(是否抛出异常是另一回事),因此调用此方法的任何方法都必须捕获它或声明它 还 扔它等等等等
因为您实际上并没有从 t
中抛出异常,所以您可以删除声明。
void t()