** extends - 상속받았다는 의미
public class ClassChild extends ClassParents {
// ClassParents 클래스로부터 상속받는 ClassChild 를 선언한다.
}
** throws - 예외처리 미루기
public class URL {
public URL (String urlstr) throws MalformedURLExcepion {
// throws 를 이용하여 MalformedURLExcepion 에러처리를 미루고 있다.
try{
// 작업내용
return new URL(urlstr);
} catch (MalformedURLExcepion e) {
// 에러처리
// throws 를 선언할 경우 개발자가 의무적으로 에러처리 구문을 작성하여야 한다.
}
}
}
** implements - 인터페이스를 구현하겠다는 의미
public class Pitcher implements BodySign {
// BodySign 인터페이스를 구현한다.
// 인터페이스는 추상화 클래스의 집합이므로 반드시 구현해주어야 한다.
}
public class ClassChild extends ClassParents {
// ClassParents 클래스로부터 상속받는 ClassChild 를 선언한다.
}
** throws - 예외처리 미루기
public class URL {
public URL (String urlstr) throws MalformedURLExcepion {
// throws 를 이용하여 MalformedURLExcepion 에러처리를 미루고 있다.
try{
// 작업내용
return new URL(urlstr);
} catch (MalformedURLExcepion e) {
// 에러처리
// throws 를 선언할 경우 개발자가 의무적으로 에러처리 구문을 작성하여야 한다.
}
}
}
** implements - 인터페이스를 구현하겠다는 의미
public class Pitcher implements BodySign {
// BodySign 인터페이스를 구현한다.
// 인터페이스는 추상화 클래스의 집합이므로 반드시 구현해주어야 한다.
}
'Note > 그밖에' 카테고리의 다른 글
Tomcat 6.0 ROOT 폴더 변경 (0) | 2012.02.21 |
---|---|
eclipse : 이클립스 팩키지 별 차이점 (0) | 2011.11.18 |
php용 adddate() 함수 -> addDate() (0) | 2011.10.20 |
php html 태그없애기 (0) | 2011.10.20 |
php array배열 일차원과 다차원 (0) | 2011.10.14 |