B
beanteen
Unregistered / Unconfirmed
GUEST, unregistred user!
在java中,我们知道一个类的名称就可以获得这个类的对象。如下:
//TestSonClass是TestClass的子类
TestSonClass abc;
Class classHandel = Class.forName("com.xxx.www.TestClass"
abc = (TestClass)classHandel.newInstance();
我的疑问是。如果classHandle是一个对象,那么classHandle这个对象是TestClass这个类的对象还是Class这个类的对象?如果是Class类的对象,那么classHandle.newInstance生成的为什么是TestClass的实例呢?
//TestSonClass是TestClass的子类
TestSonClass abc;
Class classHandel = Class.forName("com.xxx.www.TestClass"
abc = (TestClass)classHandel.newInstance();
我的疑问是。如果classHandle是一个对象,那么classHandle这个对象是TestClass这个类的对象还是Class这个类的对象?如果是Class类的对象,那么classHandle.newInstance生成的为什么是TestClass的实例呢?