자바 반사 소개 의 2---해부 구조 기
, : , , 。 , 。 。
: Java Student , cn.csdn.reflect class . :
// : Student ? :
@Test
public void test3()throws Exception{
//1、 ("cn.csdn.reflect.Student" )
Class cls = Class.forName("cn.csdn.reflect.Student");
//2、
Constructor csr[] = cls.getConstructors();
//3、 csr
for(Constructor c:csr){
//
System.out.println(c.toGenericString());
}
// :public Student()
@Test
public void test1() throws Exception{
// 1、 ("cn.csdn.reflect.Student" )
Class cls = Class.forName("cn.csdn.reflect.Student");
// 2、
Constructor constructor = cls.getConstructor(null);
// 3、
Student entity = (Student) constructor.newInstance(null);
//4、
entity.study();
}
// :public Student(String name,int age);
@Test
public void test2()throws Exception{
//1、 ("cn.csdn.reflect.Student" )
Class cls = Class.forName("cn.csdn.reflect.Student");
//2、
Constructor constructor = cls.getConstructor(String.class,int.class);
//3、
Student entity = (Student)constructor.newInstance("redarmy",90);
//4、
entity.study();
System.out.println(entity.getName());
}
// :public cn.csdn.reflect.Student(java.lang.String[])
@Test
public void test4()throws Exception{
//1、
Class cls = Class.forName("cn.csdn.reflect.Student");
//2、
Constructor csr = cls.getConstructor(String[].class);
String str[]={"111","123"};
//3、
Student entity = (Student)csr.newInstance((Object)str);
/* :Java java.lang.IllegalArgumentException: wrong number of arguments */
[url]http://redarmychen.iteye.com/blog/924134
[/url]
//4、
entity.study();
}
// private Student(List list)
@Test
public void test5()throws Exception{
//1、
Class cls = Class.forName("cn.csdn.reflect.Student");
//2、
Constructor csr = cls.getDeclaredConstructor(List.class);
// private
csr.setAccessible(true);// private
//3、
Student entity = (Student)csr.newInstance(new ArrayList());
//4、
entity.study();
}
redarmy_chen , redarmy_chen [email protected]
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.