일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- html multimedia
- #JAVASCRIPT
- docker example
- html plug-in
- html id
- #C++ has~a
- hyperledger transaction
- #성적관리프로그램
- #binary
- #C++ 연산자함수오버로딩
- #2차원배열
- #다차원포인터
- html charset
- relative path
- #1차원배열
- html5 new tag
- html youtube
- #android activity
- #자바상속#자바이즈어#is~a
- #3차원배열
- border-box
- #bubbleSort
- html video
- html object
- 하이퍼레저패브릭
- html code
- #CallByAddress
- mac terminal command
- git flow
- 토큰경제
Archives
- Today
- Total
목록#자바다운캐스팅 (1)
A sentimental robot
다운캐스팅, Downcasting
public class Day3 { public static void main(String[] args) { class Apple { void func02() { System.out.println("Apple's func02"); } } class Banana extends Apple { void func01() { System.out.println("Banana's func01"); } } class Orange extends Apple { void func01() { System.out.println("Orange's func01"); } } Apple apple = new Banana(); apple.func02(); // apple이 자식 Banana클래스 안의 func01를 쓰고 싶을 때! ->..
Java
2018. 1. 9. 11:27