Constructor 클래스중에 newInstance 메소드를 호출할 때 발생하는 예외인 InstantiationException 을 알아보자. InstantiationException 이 왜 발생하는지는 api 에 나와있는 내용을 한번쯤은 읽어주자. http://docs.oracle.com/javase/6/docs/api/java/lang/reflect/Constructor.html#newInstance(java.lang.Object...) InstantiationException - if the class that declares the underlying constructor represents an abstract class. 짧게 말해서 newInstance 메소드로 객체를 생성하려는 대상이 추..
Constructor 클래스중에 newInstance 메소드를 호출할 때 발생하는 예외인 IllegalArgumentException 을 알아보자. 아래와 같이 자바 프로젝트 만들고, 패키지도 2개 만들어 주자. 첫번째로 com.reflection.target 패키지 안에 TargetClass3 클래스를 만들자. package com.reflection.target; public class TargetClass3 { private String str; public TargetClass3(String str){ this.str = str; System.out.println("TargetClass3(String str) 생성자 호출, 입력값 : "+str); } } 두번째로 com.reflection.sam..
Class 클래스중에 forName 메소드를 호출할 때 발생하는 예외인 ClassNotFoundException 을 알아보자. 아래와 같이 프로젝트 하나 만들고 패키지도 2개 만들어 주자. 첫번째로 com.reflection.target 패키지 안에 TargetClass1 클래스를 만들자.클래스 안에 아무것도 안넣어도 된다. 그냥 Class.forName 으로 찾을 타켓 클래스를 만드는 것뿐이니까. package com.reflection.target; public class TargetClass1 { } 두번째로 Class.forName 를 실행할 테스트 클래스를 만들자. 앞에 만든 클래스를 가지고 테스트하게 된다. package com.reflection.sample; public class Clas..
- Total
- Today
- Yesterday
- ubuntu
- vagrant
- 도넛차트
- 아이맥
- MyBatis
- Google Chart Tools
- R
- 마인크래프트
- java
- docker
- javascript
- SVN
- 막대그래프
- eclipse
- Spring
- 셀프개통
- 이클립스
- ipTIME
- 알뜰요금제
- heroku
- Oracle
- ggplot
- 자급제폰
- MongoDB
- 맥북
- MySQL
- ggplot2
- ktm모바일
- github
- python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |