码迷,mamicode.com
首页 > 其他好文 > 详细

获取 Class 类实例的4种方式

时间:2017-03-18 01:02:55      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:ref   dcl   reflect   line   运行   pretty   test   隐藏   运行时   

由于唯一性,所以并没有说“创建”
  1. public class TestClass {
  2. public static void main(String[] args) throws ClassNotFoundException {
  3. // 通过运行时类本身的.class静态属性(隐藏的)来获取
  4. Class<Person> clazz1 = Person.class;
  5. System.out.println(clazz1);// class com.cdf.reflection.Person
  6. // 通过运行时类对象的 getClass() 方法(隐藏的)来获取
  7. Person p = new Person();
  8. Class<Person> clazz2 = (Class<Person>) p.getClass();
  9. System.out.println(clazz2);// class com.cdf.reflection.Person
  10. // 通过 Class 类的静态方法传入类的全名来获取
  11. Class clazz3 = Class.forName("com.cdf.reflection.Person");
  12. System.out.println(clazz3);// class com.cdf.reflection.Person
  13. // 4.通过类的加载器
  14. ClassLoader classLoader = new TestClass().getClass().getClassLoader();
  15. Class clazz4 = classLoader.loadClass("com.cdf.reflection.Person");
  16. System.out.println(clazz4);// class com.cdf.reflection.Person
  17. }
  18. }

获取 Class 类实例的4种方式

标签:ref   dcl   reflect   line   运行   pretty   test   隐藏   运行时   

原文地址:http://www.cnblogs.com/chendifan/p/6569126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!