获取Class的实例
Posted Sentiger
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取Class的实例相关的知识,希望对你有一定的参考价值。
//1.调用运行时类本身的.class属性 Class<Person> class1 = Person.class; System.out.println(class1); //2.通过运行类的对象获取 Person person = new Person(); Class class2 = person.getClass(); System.out.println(class2.getName()); System.out.println(person); // 3.通过class静态方法获取 Class class3 = Class.forName("com.mbang.Person"); //4.通过类加载器 ClassLoader classLoader = this.getClass().getClassLoader(); classLoader.loadClass("com.mbang.Person");
以上是关于获取Class的实例的主要内容,如果未能解决你的问题,请参考以下文章