티스토리 뷰
- 예제
// Parent.java public class Parent { String msg = "I'm Parent msg"; public String getMsg() { return msg; } }
// Child.java public class Child extends Parent{ // 상속 받고 재정의 하지 않음. }
// Child2.java public class Child2 extends Parent{ String str = "I'm Child2"; public String getMsg(){ // 상속받고 재정의 함. return str; } }
// ChildMain.java public class ChildMain { // main메서드에서 호출이 가능한 메서드 정의 public static void test(Parent c){ // 부모로 받는다(다형성) System.out.println(c.getMsg()); } public static void main(String[] args) { // Child 와 Child2는 형제지간 Child c1 = new Child(); test(c1); Child2 c2 = new Child2(); test(c2); } } /* 결과 ***************************************************************************** I'm Parent msg I'm Child2 str *********************************************************************************** */
'프로그래밍 > Java' 카테고리의 다른 글
자바(java) - 인터페이스 예제 (0) | 2013.07.10 |
---|---|
자바(java) - 내부 클래스(Inner class) (0) | 2013.07.09 |
자바(java) - super와 super() (0) | 2013.07.09 |
자바(java) - 오버라이딩(Overriding) (0) | 2013.07.09 |
자바(java) - 클래스 상속 (0) | 2013.07.09 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- java 소켓
- 크롬 한글 문제
- 자바 소켓
- excel2json
- 파일 입출력 예제
- aws configure
- profile.ps1
- RUBY
- java socket
- New-Alias
- 재테크
- ajax 예제
- Java
- 소켓 예제
- SIS
- golang excel2json
- dynamodb console
- 예제
- MySQL
- Windows Terminal
- aws dynamodb
- PowerShell ObjectNotFound
- 크롬 한글
- Windows Terminal Color
- excel을 json으로
- 크롬 한글 스페이스
- 자바 예제
- Windows Terminal cmd
- excel to json
- 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함