Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- sql순위
- update
- 이미지세로길이
- 인젝션
- injection
- array
- ERD
- VARIABLE
- FileSystemObject
- asp함수
- jdbc driver
- xmldom
- SPLIT
- VarType
- wap
- 한글입력체크
- join
- WML
- JavaScript
- instr
- XML
- MSSQL보안
- 자바기초
- tempDB
- sql랭킹
- 이미지가로길이
- javascript 한글입력체크
- 정규식
- inner join
- sql업데이트
Archives
- Today
- Total
3초기억력
다형성 : 하나의 참조변수로 여러 타입의 객체를 참조할 수 있는 것 본문
// 다형성
// - 여러가지 형태를 가질 수 있는 능력
// - 하나의 참조변수로 여러 타입의 객체를 참조할 수 있는 것
// 기본조건 : 상속! + interface
//아래 A, B, C의 상위는 Object. Object를 자동 상속한다.
class A{
A(){
System.out.println("A 클래스");
}
void info() {
System.out.println("A 메서드");
}
}
class B{
B(){
System.out.println("B 클래스");
}
void info() {
System.out.println("B 메서드");
}
}
class C{
C(){
System.out.println("C 클래스");
}
void info() { //메서드
System.out.println("C 메서드");
}
}
public class PolymorphismEx {
public static void main(String[] args) {
Object a1 = new A();
Object b1 = new B();
Object c1 = new C();
System.out.println("===================");
// 부모 참조 변수로 자식객체를 생성하면
// 부모가 물려준 메서드, 변수 밖에 접근 못함
// 자식메서드, 변수에 접근이 불가능
Object a3 = new A();
// a3.info(); //접근불가능
System.out.println("===================");
B a2 = new B();
System.out.println("===================");
a2.info(); //접근 가능
System.out.println("===================");
}
}
'자바_기초' 카테고리의 다른 글
형변환 (0) | 2019.05.27 |
---|---|
다형성 : 상속이 1개씩 계단형으로밖에 안된다. (0) | 2019.05.27 |
오버라이딩 ex2 (0) | 2019.05.27 |
오버라이딩 : 부모클래스 재정의 (0) | 2019.05.27 |
오버라이딩, 오버로딩? (0) | 2019.05.27 |
Comments