第一种表示方式(任何一个类都有一个隐含的静态成员变量class):
1 Class c1 = Foo.class;
第二种表示方式(已知该类对象,通过getClass方法):
1 Foo foo1 = new Foo(); 2 Class c2 = foo1.getClass();
第三种表示方式
1 Class c3 = null;2 try {3 c3 = Class.forName("com.format.test.Foo");4 } catch (ClassNotFoundException e) {5 e.printStackTrace();6 }
1 try {2 Foo foo2 = (Foo) c1.newInstance(); //需要有无参构造3 } catch (InstantiationException e) {4 e.printStackTrace();5 } catch (IllegalAccessException e) {6 e.printStackTrace();7 }
Atas ialah kandungan terperinci 反射之Class类的使用实例教程. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!