廖雪峰Java4反射与泛型-1反射-4调用构造方法

更新时间:2023-07-15 13:50:57 阅读: 评论:0

廖雪峰Java4反射与泛型-1反射-4调⽤构造⽅法wInstance()只能调⽤public的⽆参数构造⽅法
public class Main {
public static void main(String[] args) throws InstantiationException,IllegalAccessException{
同学的String s = (String) wInstance();
Integer n = (Integer) wInstance();//Interger没有⽆参数的public构造⽅法会提⽰实例化失败
}
}
惊讶的图片2.调⽤带参数的Constructor
Constructor对象包含⼀个构造⽅法的所有信息,可以⽤它来创建⼀个实例。
如Integer有2个构造⽅法,1个传⼊数字,1个传⼊字符串
Main.java
import flect.Constructor;
import flect.Field;
import flect.InvocationTargetException;
public class Main {
public static void main(String[] args) throws InvocationTargetException,InstantiationException, IllegalAccessException, NoSuchMethodException {        Integer n1 = new Integer(123);
Integer n2 = new Integer("123");
System.out.println("n1:"+n1+"\t"+"n2:"+n2);
Class cls = Integer.class;
Constructor cons1 = Constructor(int.class);
Integer n3 = (Integer) wInstance(123);
Constructor cons2 = Constructor(String.class);
Integer n4 = (Integer) wInstance("123");
清咽片System.out.println("n3:"+n3+"\t"+"n4:"+n4);
}
}
3.通过Class实例获取Constructor信息
):获取某个public的Constructor
):获取某个Constructor,包括⾮public的
getConstuctors():获取所有public的Constructor
getDeclaredConstructors():获取所有的Constructor,包括⾮public的。
Constructor总是当前类的构造⽅法,和继承没有关系,因此也不可能获得⽗类的Constructor
通过Constructor实例可以创建⼀个实例对象
parameters)
Hello.java
public interface Hello {活动案例
public void hello();
}
Student.java
public class Student implements Hello{
public static int number = 0;
public String name ;改变自己正能量的句子
psp图片private int age;
public Student(){
this("unNamed");
}
public Student(String name){
this(name,20);
}
private Student(String name,int age){
this.name=name;
this.age = age;
number++;
}
public void hello(){
System.out.println(name+" is Student");
}
}
Main.java
import flect.Array;
import flect.Constructor;
import flect.Field;
import flect.InvocationTargetException;
import java.util.Arrays;
public class Main {
public static void main(String[] args) throws InvocationTargetException,InstantiationException, IllegalAccessException, NoSuchMethodException {        Class cls = Student.class;
Constructor con1 = DeclaredConstructor(String.class,int.class);//传⼊参数类型
printConstructor(con1);
con1.tAccessible(true);//允许访问这个构造⽅法
Student s = (Student) wInstance("⼩明",12);
s.hello();
}
static void printConstructor(Constructor c){
System.out.println(c);//打印构造⽅法
System.out.println("parameters: "+ParameterTypes()));//打印参数类型
dark
System.out.println("modifier:"+c.getModifiers());//打印传⼊参数个数
}
}
4.SecurityManager
通过设置tAccessible(true)来访问⾮public构造⽅法
rAccessible(true)可能会失败:
定义了SecurityManager
SecurityManager的规则阻⽌对该Constructor设置accessible:例如,规则应⽤与所有Java和Javax开头的package的类5.总结
Constructor对象封装了构造⽅法的所有信息
八下英语人教版单词表通过Class实例的⽅法可以获取Constructor实
例:getConstructor()/getDeclaredConstructor()/getConstuctors()/getDeclaredConstructors()通过Constructor实例可以创建⼀个实例对象:parameters)
通过设置tAccessible(true)来访问⾮public构造⽅法

本文发布于:2023-07-15 13:50:57,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1097962.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:构造   实例   参数   对象
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图