具有TRY和AC的给定2个程序之间的主要区别是什么? JAVA中的CATCH和THROWS异常

时间:2016-04-10 08:14:56

标签: java

为什么我们需要在使用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中解释....

0 个答案:

没有答案