Java1 Reflection과 Annotation Reflection이란? 객체를 통해 클래스의 정보를 분석해내는 프로그램 기법입니다. 기본적으로 제공하는 자바의 API이다. 자바의 Reflection은 클래스, 인터페이스, 메서드들을 찾을 수 있고, 객체를 생성하거나 변수를 변경할 수 있고, 메서드를 호출할 수 도 있습니다. class Person{ public String name; private int age; public Person() { } public void setAge(int age) { this.age = age; } public int getAge() { return age; } public void setName(String name){ this.name = name; } public String getName() { return .. 2020. 8. 10. 이전 1 다음