摘要: Class类(在java.lang包中,Instances of the class Classrepresent classes and interfaces in a running Javaapplication): 在Java中,每个class都有一个相应的Class对象。也就是说,当我们编写一个类,编译完成后,在生成的.class文件中,就会产生一个Class对象,用于表示这个类的类型信息 获取Class实例的三种方式: (1)利用对象调用getClass()方法获取该对象的Class实例; (2)使用Class类的静态方法forName(),用类的名字获取一个Class实例(staticClass forName(String className) Returns the Classobject associated with the class or interface with the given stringname. ); (3)运用.class的方式来获取Class实例,对于基本数据类型的封装类,还可以采用.T 阅读全文
posted @ 2011-10-04 11:17 蛊惑Into 阅读(29040) 评论(2) 推荐(2) 编辑