일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #C++ has~a
- html code
- html id
- git flow
- hyperledger transaction
- #bubbleSort
- html plug-in
- #binary
- #CallByAddress
- relative path
- html youtube
- #다차원포인터
- #C++ 연산자함수오버로딩
- html object
- #3차원배열
- #성적관리프로그램
- border-box
- #1차원배열
- #JAVASCRIPT
- html charset
- #자바상속#자바이즈어#is~a
- 하이퍼레저패브릭
- docker example
- #android activity
- #2차원배열
- 토큰경제
- html5 new tag
- html video
- mac terminal command
- html multimedia
Archives
- Today
- Total
목록#upCasting (1)
A sentimental robot
상속관계를 통한 다형성과 업캐스팅
class Animal { public void cry() { } } class Dog extends Animal { public void cry() { System.out.println("A dog cries"); } } class Cat extends Animal { public void cry() { System.out.println("A cat cries"); } } public class Day1 { public static void main(String[] args) { Animal an = new Dog(); // upcasting an.cry(); an=new Cat(); // 동적바인딩 > 다형성 an.cry(); } } class Animal { // Animal 클래스에서 사용되는 c..
Java
2018. 1. 5. 09:45