类加载器和构造器

简介:   利用反射技术生成对象,clazz.getConstructor().newInstance();  1. 通过类对象调用newInstance()方法,适用于无参构造方法:   例如:String.

 

 

 

利用反射技术生成对象,clazz.getConstructor().newInstance();

 

 

1. 通过类对象调用newInstance()方法,适用于无参构造方法:

   例如:String.class.newInstance()

复制代码
 1 public class Solution {
 2 
 3     public static void main(String[] args) throws Exception {
 4 
 5         Solution solution = Solution.class.newInstance();
 6 
 7         Solution solution2 = solution.getClass().newInstance();
 8 
 9         Class solutionClass = Class.forName("Solution");
10         Solution solution3 = (Solution) solutionClass.newInstance();
11 
12         System.out.println(solution instanceof Solution); //true
13         System.out.println(solution2 instanceof Solution); //true
14         System.out.println(solution3 instanceof Solution); //true
15     }
16     
18 }
复制代码

 

2. 通过类对象的getConstructor()或getDeclaredConstructor()方法获得构造器(Constructor)对象并调用其newInstance()方法创建对象,适用于无参和有参构造方法。

   例如:String.class.getConstructor(String.class).newInstance("Hello");

 

复制代码
 1 public class Solution {
 2 
 3     private String str;
 4     private int num;
 5 
 6     public Solution() {
 7 
 8     }
 9 
10     public Solution(String str, int num) {
11         this.str = str;
12         this.num = num;
13     }
14 
15     public Solution(String str) {
16         this.str = str;
17     }
18 
19     public static void main(String[] args) throws Exception {
20 
21         Class[] classes = new Class[] { String.class, int.class };
22         Solution solution = Solution.class.getConstructor(classes).newInstance("hello1", 10);
23         System.out.println(solution.str); // hello1
24 
25         Solution solution2 = solution.getClass().getDeclaredConstructor(String.class).newInstance("hello2");
26         System.out.println(solution2.str); // hello2
27 
28         Solution solution3 = (Solution) Class.forName("Solution").getConstructor().newInstance(); // 无参也可用getConstructor()
29         System.out.println(solution3 instanceof Solution); // true
30     }
31 
32 }
复制代码

 

 

 

********* getConstructor()和getDeclaredConstructor()区别:*********

getDeclaredConstructor(Class<?>... parameterTypes) 
这个方法会返回制定参数类型的所有构造器,包括public的和非public的,当然也包括private的。
getDeclaredConstructors()的返回结果就没有参数类型的过滤了。

再来看getConstructor(Class<?>... parameterTypes)
这个方法返回的是上面那个方法返回结果的子集, 只返回制定参数类型访问权限是public的构造器。
getConstructors()的返回结果同样也没有参数类型的过滤。

 

目录
相关文章
|
6月前
|
应用服务中间件
自定义类加载器
自定义类加载器
25 0
|
前端开发 Java 开发者
什么是类加载器,类加载器有哪些?
什么是类加载器,类加载器有哪些?
86 0
|
前端开发 Java 数据库
什么是类加载器?类加载器有哪些?
类加载器(ClassLoader)是Java虚拟机(JVM)的一部分,用于将类的字节码加载到内存中,并生成对应的Class对象。类加载器负责查找、加载和链接类的过程。
234 0
初学反射之---类的加载于classLoader的理解
初学反射之---类的加载于classLoader的理解
|
安全 前端开发 Java
双亲委派模型与类加载器
我们都知道类都是通过类加载器被加载进虚拟机中的,那这个类加载器有哪些呢?我们平时写的代码又是通过什么类加载器被加载进虚拟机中的呢?类加载器的工作模式又是什么呢?带着疑问一起去学习下双亲委派模型与类加载器。
126 0
双亲委派模型与类加载器
|
Java 应用服务中间件 数据库
类加载器系列(三)——如何自定义类加载器
类加载器系列(三)——如何自定义类加载器
1260 0
类加载器系列(三)——如何自定义类加载器
|
安全 前端开发 Java
双亲委派模型与自定义类加载器
双亲委派模型与自定义类加载器
双亲委派模型与自定义类加载器
|
缓存 前端开发 Java
37. 请你详细说说类加载流程,类加载机制及自定义类加载器 中
37. 请你详细说说类加载流程,类加载机制及自定义类加载器 中
124 0
37. 请你详细说说类加载流程,类加载机制及自定义类加载器 中
|
Java 编译器 API
37. 请你详细说说类加载流程,类加载机制及自定义类加载器 上
37. 请你详细说说类加载流程,类加载机制及自定义类加载器 上
93 0
|
Java
37. 请你详细说说类加载流程,类加载机制及自定义类加载器 下
37. 请你详细说说类加载流程,类加载机制及自定义类加载器 下
99 0