开发者学堂课程【【名师课堂】Java 高级开发:反射与类操作(反射调用构造)】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/372/detail/4627
反射与类操作(反射调用构造)
目录:
一、调用构造
二、范例
一、调用构造
一个类中可以存在有多个构造方法,那么如果要想取得类中构造的调用,就可以使用 Class 类提供的两个方法。
二、范例:
1.取得指定参数类型的构造:
getcomponent ype()
Returms the Class representing the component type of an
Const ruc torc
getconstructorlclasse7s... parameterTypes )
Returnis a Constructor object that reflects the specifedpublic constructorof the class representedby this Classobject
pubL1c Constructonea出tConstructor I C B5 5-72.。。pa rame te rTy pe S
th rous NoSuchMe t hodErception
SecurityEx cepti on
2.取得类中的所有构造:
Const ructorc7> l1
getConstructors )
Returns an array containing Constructor objects refectingall the public constructors of the class represented by thisClassobject
publicconstructo r721 g e t C ons L ructorsi
throws SecurityException
取得类中的所有构造:
Constructorc?> I I
getcopstructors()
Returtis an artay containing Const ruc tor objects reflecting
l the public constructors of the class represented by thisClass oblect.
public C onst ructoreTs ge tConst ructors,
throus SecurityEx cept 1on
以上两个方法返回的类型都是 Java.lang.reflect.Constructor 类的实例化对象,这个类里面关注一个方法。
范例:取得类中的所有构造方法信息
classPenson{
public Person( ){ }
public Person(string nane ){}
public ll Person(string nane ,int age) { }
publicclassTe stDemo
public static vold main(string[] args) throws Exception (classepsa1s m Person.class ;
constructor?» conts[] . (ls . getConstructors() ;forlintxe;x(conts.length ; х ++)1
system. out. println(conts[x]);
然后执行此程序,得出以下程序。
public cn. mldn。demo . Person( )
public cn.mldn. demo。Person(java. lang. String)
public cn. mldn. demo。Personc ava. lang. string,int
以上的操作是直接利用了 Construcotrl 类中的 to String() 方法取得了构造方法的完整信息,而如果你只使用 get Name() 方法就会比较麻烦。
现在举行一个例子。在 conts[x] 后面添加 getname。
System.out.printIn(conts[xj.getName());
得到输出结果为。
下面给同学们讲另外一种方法。
Getmodifiers 实际上取得的就是方法的声明操作。
范例:自己拼凑构造方法操作
package cn.aIdn.demo;
import j ava.lang. reflect.Constructor;
import Java.lang,reflect.Modifier;
classPerson(
public Person() throws RuntimeException,Exception{}
publicPerson(strine name) thromt RuntimeException, Exception{}
public Person(strine | name int 2 ) throus Runti meExcept ion, Except ion{}
publicclassTe s tDemo
讲解 Constructor 类的目的并不是让你
去分析构造方法的取得组成,实际上那些操作们没有关系,你们最需要关注的是之前的一个问题结论。在定义简单 Java 类的时候一定要保留有一个无参构造。
范例:观察 Class 实列化对象的问题。
Class 类通过反射实例化类对象的时候,只能够调用类中的无参构造。那么如果现在类中没有无参构造,无法使用 Class 类操作,只能够通过明确的构造调用执行实例化处理。
范例:通过 Constructour 类实例化对象。
输出结果为 Person[name=张三,age=10]
结论:
以后写简单 Java 类要写无参构造,你就不需要会以上的内容。