자바 처리 이상 메커니즘 키워드 throw 와 throws 사용 분석

이상 처리 과정 에서 throws 와 throw 의 차 이 는?
throws:처리 하지 않 고 업로드,누가 호출 하고 누가 처리 하 는 지 방법 에 대해 설명 합 니 다.
throw:이상 유형 을 구체 적 으로 던 지 는 것 입 니 다.
throws 의 밤:
throws 라면 이 방법 에 이상 이 생 길 수 있 습 니 다.저 는 이 방법 을 설명 할 뿐 입 니 다.저 는 스스로 처리 하지 않 습 니 다.만약 에 누군가가 호출 할 때 이 방법 이 이상 을 던 질 수 있다 는 것 을 알 수 있 습 니 다.제 가 호출 하면 제 가 처리 하거나 이어서 throws 를 해 야 합 니 다.
형식:방법 명(매개 변수)throws 이상 류 1,이상 류 2,......

class Math{
   public int div(int i,int j) throws Exception{
     int t=i/j;
     return t;
   }
 }

public class ThrowsDemo {
   public static void main(String args[]) throws   Exception{
     Math m=new Math();
     System.out.println("    :"+m.div(10,2));
   }
 }
throw:이상 한 방법 중 포획 도 가능 하고 throws 도 가능 합 니 다.
throws:실행 되면 프로그램 이 즉시 이상 처리 단계 로 넘 어가 고 뒤의 문 구 는 더 이상 실행 되 지 않 으 며 소재 하 는 방법 은 더 이상 의미 있 는 값 으로 돌아 가지 않 습 니 다.

public class TestThrow
{
  public static void main(String[] args) 
  {
    try
    {
      //   throws     ,         
      //  ,   main         
      throwChecked(-3);      
    }
    catch (Exception e)
    {
      System.out.println(e.getMessage());
    }
    //    Runtime               ,
    //        
    throwRuntime(3);
  }
  public static void throwChecked(int a)throws Exception
  {
    if (a > 0)
    {
      //    Exception  
      //       try  ,    throws      
      throw new Exception("a    0,     ");
    }
  }
  public static void throwRuntime(int a)
  {
    if (a > 0)
    {
      //    RuntimeException  ,          
      //          ,              
      throw new RuntimeException("a    0,     ");
    }
  }
}
글 에서 예시 코드 를 통 해 매우 상세 하 게 소개 하여 여러분 의 학습 이나 업무 에 대해 어느 정도 참고 학습 가 치 를 가지 고 있 습 니 다.

좋은 웹페이지 즐겨찾기