일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- mac terminal command
- html object
- docker example
- #C++ 연산자함수오버로딩
- #다차원포인터
- #JAVASCRIPT
- html youtube
- html plug-in
- hyperledger transaction
- #1차원배열
- #C++ has~a
- #2차원배열
- border-box
- #자바상속#자바이즈어#is~a
- git flow
- #android activity
- 토큰경제
- html charset
- html multimedia
- html id
- 하이퍼레저패브릭
- #CallByAddress
- #성적관리프로그램
- html code
- #bubbleSort
- #3차원배열
- relative path
- #binary
- html video
- html5 new tag
Archives
- Today
- Total
A sentimental robot
자바에서 대표적인 예외 본문
public class Day3 {
public static void main(String[] args) {
// int num = 3/0; // ArithmeticException
String str = new String("tiger");
str = null;
// System.out.println(str.length()); // NullPointerException
int[] ar = new int[5];
// ar[5] = 10; // ArrayIndexOutOfBoundsException
class Apple {
}
class Banana extends Apple {
}
class Orange extends Apple {
}
Apple apple = new Banana(); // Upcasting
Banana banana = (Banana) apple; // Downcasting
Orange org=(Orange)apple; // apple은 객체생성시 바나나타입으로 태어났으므로.. ClassCastException
}
}
'Java' 카테고리의 다른 글
다운캐스팅, Downcasting (0) | 2018.01.09 |
---|---|
예외처리, try~catch (0) | 2018.01.09 |
우주에서 랜덤하게 살아남기 (0) | 2018.01.08 |
CRUD, LinkedList (0) | 2018.01.08 |
상속관계를 통한 다형성과 업캐스팅 (0) | 2018.01.05 |