일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #binary
- #성적관리프로그램
- #3차원배열
- #android activity
- html video
- #다차원포인터
- hyperledger transaction
- #C++ 연산자함수오버로딩
- 하이퍼레저패브릭
- html object
- relative path
- git flow
- #2차원배열
- #자바상속#자바이즈어#is~a
- #CallByAddress
- html5 new tag
- #bubbleSort
- mac terminal command
- html youtube
- #C++ has~a
- border-box
- html charset
- 토큰경제
- html multimedia
- docker example
- html code
- html id
- html plug-in
- #JAVASCRIPT
- #1차원배열
Archives
- Today
- Total
목록#자바예외처리 (1)
A sentimental robot
예외처리, try~catch
public class Day3 { public static void main(String[] args) { try { int a = 3 / 0; } catch (Exception e) { System.out.println("error"); // try에서 에러가 나면 catch문으로 넘어온다. e.printStackTrace(); // 지금 어떤 exception이 발생 했는 지 출력해준다. } class Apple { void func01() { try { throw new Exception(); // throw->exception을 발생시킴 ,throw는 반드시 try/catch문이 받아야함!! } catch (Exception e) { } } void func02() throws Exception..
Java
2018. 1. 9. 10:52