Instances of the class Class represent classes and interfaces in a running Java application. An enum is a kind of class and an annotation is a kind of interface. Every array also belongs to a class that is reflected as a Class object that is shared by all arrays with the same element type and number of dimensions. The primitive Java types (boolean, byte, char, short, int, long, float, and double), and the keyword void are also represented as Class objects.
Class has no public constructor. Instead Class objects are constructed automatically by the Java Virtual Machine as classes are loaded and by calls to the defineClass method in the class loader.
Class 类的实例表示正在运行的 Java 应用程序中的类和接口,包括基本数据类型、void均表示为对应的Class对象。
Class 没有公共构造方法。Class 对象是在加载类时由 Java 虚拟机以及通过调用类加载器中的defineClass 方法自动构造的。
packagefanshe;publicclassStudent{//---------------构造方法-------------------//(默认的构造方法)Student(Stringstr){System.out.println("(默认)的构造方法 s = "+str);}//无参构造方法publicStudent(){System.out.println("调用了公有、无参构造方法执行了。。。");}//有一个参数的构造方法publicStudent(charname){System.out.println("姓名:"+name);}//有多个参数的构造方法publicStudent(Stringname,intage){System.out.println("姓名:"+name+"年龄:"+age);//这的执行效率有问题,以后解决。}//受保护的构造方法protectedStudent(booleann){System.out.println("受保护的构造方法 n = "+n);}//私有构造方法privateStudent(intage){System.out.println("私有的构造方法 年龄:"+age);}}
/**
* 通过Class对象可以获取某个类中的:构造方法、成员变量、成员方法;并访问成员;
* 1.获取构造方法:
* 1).批量的方法:
* public Constructor[] getConstructors():所有"公有的"构造方法
* public Constructor[] getDeclaredConstructors():获取所有的构造方法(包括私有、受保护、默认、公有)
* 2).获取单个的方法,并调用:
* public Constructor getConstructor(Class... parameterTypes):获取单个的"公有的"构造方法:
* public Constructor getDeclaredConstructor(Class... parameterTypes):获取"某个构造方法"可以是私有的,或受保护、默认、公有;
* 调用构造方法:
* Constructor-->newInstance(Object... initargs)
*/publicclassConstructors{publicstaticvoidmain(String[]args)throwsException{//1.加载Class对象Classclazz=Class.forName("fanshe.Student");//2.获取所有公有构造方法System.out.println("**********************所有公有构造方法*********************************");Constructor[]conArray=clazz.getConstructors();for(Constructorc:conArray){System.out.println(c);}System.out.println("************所有的构造方法(包括:私有、受保护、默认、公有)***************");conArray=clazz.getDeclaredConstructors();for(Constructorc:conArray){System.out.println(c);}System.out.println("*****************获取公有、无参的构造方法*******************************");Constructorcon=clazz.getConstructor(null);//1>、因为是无参的构造方法所以类型是一个null,不写也可以:这里需要的是一个参数的类型,切记是类型//2>、返回的是描述这个无参构造函数的类对象。System.out.println("con = "+con);/*
调用构造方法:
Constructor#newInstance(Object... initargs)
newInstance是 Constructor类(管理构造函数的类)的方法,Javadoc对此方法的描述:
Uses the constructor represented by this `Constructor` object to create and initialize
a new instance of the constructor's declaring class, with the specified initialization
parameters. Individual parameters are automatically unwrapped to match primitive formal
parameters, and both primitive and reference parameters are subject to method
invocation conversions as necessary.
使用此 Constructor 对象表示的构造方法来创建该构造方法的声明类的新实例,并用指定的初始化参数初始化该实例。
它的返回值是T类型,所以newInstance是创建了一个构造方法的声明类的新实例对象。并为之调用
*/Objectobj=con.newInstance();// System.out.println("obj = " + obj);// Student stu = (Student)obj;System.out.println("******************获取私有构造方法,并调用*******************************");con=clazz.getDeclaredConstructor(char.class);System.out.println(con);//调用构造方法con.setAccessible(true);//暴力访问(忽略掉访问修饰符)obj=con.newInstance('男');}}
输出:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
**********************所有公有构造方法*********************************
public fanshe.Student(java.lang.String,int)public fanshe.Student(char)public fanshe.Student()************所有的构造方法(包括:私有、受保护、默认、公有)***************
private fanshe.Student(int)protected fanshe.Student(boolean)public fanshe.Student(java.lang.String,int)public fanshe.Student(char)public fanshe.Student()fanshe.Student(java.lang.String)*****************获取公有、无参的构造方法*******************************
con= public fanshe.Student()调用了公有、无参构造方法执行了。。。
******************获取私有构造方法,并调用*******************************
public fanshe.Student(char)姓名:男
packagefanshe.method;publicclassStudent{//**************成员方法***************//publicvoidshow1(Strings){System.out.println("调用了:公有的,String参数的show1(): s = "+s);}protectedvoidshow2(){System.out.println("调用了:受保护的,无参的show2()");}voidshow3(){System.out.println("调用了:默认的,无参的show3()");}privateStringshow4(intage){System.out.println("调用了,私有的,并且有返回值的,int参数的show4(): age = "+age);return"abcd";}}
***************获取所有的”公有“方法***************
public void fanshe.method.Student.show1(java.lang.String) public final void java.lang.Object.wait(long,int) throws java.lang.InterruptedException
public final native void java.lang.Object.wait(long) throws java.lang.InterruptedException
public final void java.lang.Object.wait() throws java.lang.InterruptedException
public boolean java.lang.Object.equals(java.lang.Object) public java.lang.String java.lang.Object.toString() public native int java.lang.Object.hashCode() public final native java.lang.Class java.lang.Object.getClass() public final native void java.lang.Object.notify() public final native void java.lang.Object.notifyAll() ***************获取所有的方法,包括私有的***************
public void fanshe.method.Student.show1(java.lang.String) private java.lang.String fanshe.method.Student.show4(int) protected void fanshe.method.Student.show2() void fanshe.method.Student.show3() ***************获取公有的show1()方法***************
public void fanshe.method.Student.show1(java.lang.String) 调用了:公有的,String参数的show1(): s= 刘德华
***************获取私有的show4()方法******************
private java.lang.String fanshe.method.Student.show4(int) 调用了,私有的,并且有返回值的,int参数的show4(): age=20 返回值:abcd
由此可见:
m = stuClass.getDeclaredMethod(“show4”, int.class);//调用制定方法(所有包括私有的),需要传入两个参数,第一个是调用的方法名称,第二个是方法的形参类型,切记是类型。
System.out.println(m);
m.setAccessible(true);//解除私有限定
Object result = m.invoke(obj, 20);//需要两个参数,一个是要调用的对象(获取有反射),一个是实参
System.out.println(“返回值:” + result);//
packagefanshe.main;importjava.lang.reflect.Method;/**
* 获取Student类的main方法、不要与当前的main方法搞混了
*/publicclassMain{publicstaticvoidmain(String[]args){try{//1、获取Student对象的字节码Classclazz=Class.forName("fanshe.main.Student");//2、获取main方法MethodmethodMain=clazz.getMethod("main",String[].class);//第一个参数:方法名称,第二个参数:方法形参的类型,//3、调用main方法// methodMain.invoke(null, new String[]{"a","b","c"});//第一个参数,对象类型,因为方法是static静态的,所以为null可以,第二个参数是String数组,这里要注意在jdk1.4时是数组,jdk1.5之后是可变参数//这里拆的时候将 new String[]{"a","b","c"} 拆成3个对象。。。所以需要将它强转。methodMain.invoke(null,(Object)newString[]{"a","b","c"});//方式一// methodMain.invoke(null, new Object[]{new String[]{"a","b","c"}});//方式二}catch(Exceptione){e.printStackTrace();}}}
import java.lang.reflect.Method;
/**
获取Student类的main方法、不要与当前的main方法搞混了
*/
public class Main {
public static void main(String[] args) {
try {
//1、获取Student对象的字节码
Class clazz = Class.forName(“fanshe.main.Student”);
//2、获取main方法
Method methodMain = clazz.getMethod("main", String[].class);//第一个参数:方法名称,第二个参数:方法形参的类型,
//3、调用main方法
// methodMain.invoke(null, new String[]{"a","b","c"});
//第一个参数,对象类型,因为方法是static静态的,所以为null可以,第二个参数是String数组,这里要注意在jdk1.4时是数组,jdk1.5之后是可变参数
//这里拆的时候将 new String[]{"a","b","c"} 拆成3个对象。。。所以需要将它强转。
methodMain.invoke(null, (Object)new String[]{"a","b","c"});//方式一
// methodMain.invoke(null, new Object[]{new String[]{"a","b","c"}});//方式二