为什么我们需要在使用try和catch来处理它时抛出异常... 通过使用throw ...
//A void method
public void sample()
{
//Statements
//if (somethingWrong) then
IOException e = new IOException();
throw e;
//More Statements
}
使用try和catch
MyClass obj = new MyClass();
try{
obj.sample();
} catch(IOException ioe)
{
//Your error Message here
System.out.println(ioe);
}
他们的工作方式完全相同。 他们之间的主要区别是什么.. plzz在POINTS中解释....