首页 > TAG信息列表 > Fanshe

反射通过私有方法来构架对象

package Fanshe;//需求 实现Student s=new Student("李清霞");//System.out.println(s)import java.lang.reflect.Constructor;public class Fanshedeom2 { public static void main(String[] args) throws Exception{ Class<?> clss = Class.forName(&quo

反射的基础使用

事先在Fanshe包下建立一个Student的类package Fanshe;//需求 实现Student s=new Studemt("李清霞",20);//System.out.println(s)import java.lang.reflect.Constructor;public class Fanshedeom1 { public static void main(String[] args) throws Exception { //获取cl

得到类的class对象

package fanshe; public class fanshe { public static void main(String[] args) throws Exception { // TODO Auto-generated method stub // 获取calss对象的方法 //使用类的class属性来获取对应的class对象 Class<Student>s1= Student.class; System.out.prin