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 | 31 |
Tags
- jsr303
- 클래스레벨밸리데이션
- cross parameter
- Spring
- 코드스피츠
- kotliln
- jsr380
- 브로틀리
- brotli
- etag
- 개미수열
- 알고리즘
- cache-control
- Kotlin
- i18n
- 이렇게살아야되나자괴감이
- 지수반등
- HTTP
- 지뢰찾기
- LastModified
- 워드프레스
- 스프링
- 알게뭐냐
- 리얼월드HTTP
- 랜선아미안해
Archives
- Today
- Total
취미개발 블로그와 마음수양
자바 동적 바인딩에 관하여~ 본문
오늘 학원 9일차 동적 바인딩 - 다형성에 대해서 배웠다~
자 일단 렝탱글이 있다~
public class Rectangle extends Shape{ public void draw(){ System.out.println("Rectangle draw() "); } }
그리고 쉐이프가 있다.
public class Shape { public void draw(){ System.out.println("Shape draw()"); } }
그리고 이것들을 이용하는 테스트가 있다
public class Test { public static void main(String[] args) { Shape s = new Shape(); s.draw(); Rectangle r= new Rectangle(); r.draw(); Shape s2 = new Rectangle(); s2.draw(); //다형성 } }
자 여기서 Test의 결과는?
s2.draw()는 Shape Draw()가 아니라 Rectangle draw()를 호출한다.
왼쪽을 Shape 로 처리를 해도 결국 출력은 Rectangle Draw를 호출하게 된다.
'Language' 카테고리의 다른 글
Java beans, VO, DTO, POJO (0) | 2016.10.08 |
---|---|
눈 내리는 자바 소스 (0) | 2014.08.13 |
자바 enum (0) | 2014.08.04 |
날짜 오늘 날짜 변환 공식 (0) | 2014.06.06 |
ip주소 중간중간에 하트로표시해주기. (0) | 2014.05.31 |