getFields()只能获取public的字段,包括父类的。
而getDeclaredFields()只能获取自己声明的各种字段,包括public,protected,private。
getMethods,getDeclareMethods,getMethod,getDeclareMethod 方法的区别:
// 返回方法数组
getMethods:
返回该类的所有方法,但不包括私有方法
getDeclareMethods:
返回该该类所有显示声明的方法,包括私有方法
// 返回特定方法
getMethod:
返回该类的任何公有方法。
getDeclareMethod:
返回该类的显示声明的公,私有方法。
总结: 只有getDeclareMethods,getDeclareMethod方法才能返回私有方法。
其他的只能返回公有方法。
也就是说对于返回明确的方法如:getMethod("方法名",Class[]{....}) 其方法名必须是公有的,否则程序运行时会报错。
在开始之前,我先定义一个测试类Student,代码如下:
- package chb.test.reflect;
- public class Student {
- private int age;
- private String name;
- public int getAge() {
- return age;
- }
- public void setAge(int age) {
- this.age = age;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public static void hi(int age,String name){
- System.out.println("大家好,我叫"+name+",今年"+age+"岁");
- }
- }
一、JAVA反射的常规使用步骤
反射调用一般分为3个步骤:
-
得到要调用类的class
-
得到要调用的类中的方法(Method)
-
方法调用(invoke)
- Class cls = Class.forName("chb.test.reflect.Student");
- Method m = cls.getDeclaredMethod("hi",new Class[]{int.class,String.class});
- m.invoke(cls.newInstance(),20,"chb");<pre></pre>
二、方法调用中的参数类型
在方法调用中,参数类型必须正确,这里需要注意的是不能使用包装类替换基本类型,比如不能使用Integer.class代替int.class。
如我要调用Student的setAge方法,下面的调用是正确的:
- Class cls = Class.forName("chb.test.reflect.Student");
- Method setMethod = cls.getDeclaredMethod("setAge",int.class);
- setMethod.invoke(cls.newInstance(), 15);<pre></pre>
而如果我们用Integer.class替代int.class就会出错,如:
- Class cls = Class.forName("chb.test.reflect.Student");
- Method setMethod = cls.getDeclaredMethod("setAge",Integer.class);
- setMethod.invoke(cls.newInstance(), 15);<pre></pre>
jvm会报出如下异常:
- java.lang.NoSuchMethodException: chb.test.reflect.Student.setAge(java.lang.Integer)
- at java.lang.Class.getDeclaredMethod(Unknown Source)
- at chb.test.reflect.TestClass.testReflect(TestClass.java:23)<pre></pre>
三、static方法的反射调用
static方法调用时,不必得到对象示例,如下:
- Class cls = Class.forName("chb.test.reflect.Student");
- Method staticMethod = cls.getDeclaredMethod("hi",int.class,String.class);
- staticMethod.invoke(cls,20,"chb");//这里不需要newInstance
- //staticMethod.invoke(cls.newInstance(),20,"chb");<pre></pre>
四、private的成员变量赋值
如果直接通过反射给类的private成员变量赋值,是不允许的,这时我们可以通过setAccessible方法解决。代码示例:
- Class cls = Class.forName("chb.test.reflect.Student");
- Object student = cls.newInstance();//得到一个实例
- Field field = cls.getDeclaredField("age");
- field.set(student, 10);
- System.out.println(field.get(student));<pre></pre>
运行如上代码,系统会报出如下异常:
- java.lang.IllegalAccessException: Class chb.test.reflect.TestClass can not access a member of class chb.test.reflect.Student with modifiers "private"
- at sun.reflect.Reflection.ensureMemberAccess(Unknown Source)
- at java.lang.reflect.Field.doSecurityCheck(Unknown Source)
- at java.lang.reflect.Field.getFieldAccessor(Unknown Source)
- at java.lang.reflect.Field.set(Unknown Source)
- at chb.test.reflect.TestClass.testReflect(TestClass.java:20)<pre></pre>
解决方法:
- Class cls = Class.forName("chb.test.reflect.Student");
- Object student = cls.newInstance();
- Field field = cls.getDeclaredField("age");
- field.setAccessible(true);//设置允许访问
- field.set(student, 10);
- System.out.println(field.get(student));<pre></pre>
其实,在某些场合下(类中有get,set方法),可以先反射调用set方法,再反射调用get方法达到如上效果,代码示例:
- Class cls = Class.forName("chb.test.reflect.Student");
- Object student = cls.newInstance();
- Method setMethod = cls.getDeclaredMethod("setAge",Integer.class);
- setMethod.invoke(student, 15);//调用set方法
- Method getMethod = cls.getDeclaredMethod("getAge");
- System.out.println(getMethod.invoke(student));//再调用get方法<pre></pre>
=======================================================================
相关推荐
**jBPM 4 使用手记** jBPM(Java Business Process Management)是一个开源的工作流管理系统,它提供了全面的业务流程管理和工作流解决方案。在jBPM 4这个版本中,开发者可以利用其强大的功能来设计、执行和管理...
在Eclipse中使用GPE创建GWT项目,配置web.xml和GWTLearning.html,编写Java代码,并运行Web Application,浏览器会下载GWT运行所需的插件。 3. **JSF (JavaServer Faces)** JSF是Java EE的一部分,用于构建用户...
IT项目经理成长手记IT项目经理成长手记IT项目经理成长手记IT项目经理成长手记IT项目经理成长手记
**JRebel 热插件使用手记** JRebel 是一款强大的 Java 开发工具,它能够实现在不重启应用服务器的情况下实时更新代码,极大地提高了开发效率。本文将详细介绍 JRebel 的安装、配置以及如何在实际开发中充分利用其热...
资源名称:Python数据分析教程_NumPy使用手记内容简介:NumPy系统是Python的一种开源的数字扩展。这种工具可用来存储和处理大型矩阵,比Python自身的嵌套列表(nested list structure)结构要高效的多(该结构也可以...
压缩包中的`prototype.js开发手记.doc`和`prototype.js开发者手册1.4.doc`文件,虽然不是直接关于Java,但Prototype.js是一个流行的JavaScript库,它扩展了JavaScript的基本对象,使得在JavaScript中进行面向对象...
1. **编程语言**:可能会涵盖常见的编程语言如 Java、Python、C++、JavaScript,以及它们的基础语法、进阶特性、框架和库的使用。 2. **软件开发**:可能包含软件工程的各个阶段,如需求分析、设计、编码、测试和...
这篇使用手记将深入探讨其基本使用方法、数据绑定以及客户端行维护等核心功能,帮助程序员提高开发效率。 ### 一、基本使用方法 1. **导入Dll文件**:首先,你需要在项目中引入AspxGridView相关的DLL文件,通常...
IT项目经理成长手记PDF,非常不错的资源
该项目是一款基于Java语言的晨昏手记SSM在线日记本设计源码,包含45个文件,其中Java源文件34个,XML配置文件6个,属性文件2个,Git忽略文件1个,Markdown文件1个,以及SQL脚本文件1个。
### MySQL 数据库使用手记知识点总结 #### 一、安装与配置MySQL ##### 环境准备 - **操作系统**: Windows XP(兼容Windows 2000、Windows 2003) - **MySQL版本**: MySQL 5.0 **假设前提**: MySQL系统已安装完成...
如果选择其他Java开发环境,则可能无法使用ADT(Android Development Tools)插件,而Eclipse作为主流的开发工具之一,具有良好的稳定性和丰富的插件支持,因此推荐使用Eclipse进行开发。 **1.1.3 安装Android SDK** ...
史上最全的AspxGridView使用手记,是word文档(共84页!),下面的目录 一、 基本使用方法 4 1.导入Dll文件 4 2.Asp.Net页面控件注册 4 3. Asp.Net页面控件声明 5 4.删除licenses.licx协议文件(盗版) 5 5.功能概述 5 二...
很不错的NumPy使用手记,好好学习。
水晶报表是一个优秀的报表开发工具,本人在开发通用管理系统的时候,所有报表都使用水晶报表,其简单、易用和强大的功能令笔者倍加喜爱,现将水晶报表使用手记呈现给大家。
这篇“【笔记】AVR使用手记”所涉及的知识点主要包括AVR单片机的时钟系统配置、外围晶振的故障排查以及熔丝位设置。 首先,AVR单片机的时钟系统对整个微控制器的工作至关重要。正常上电后,单片机需要有一个稳定的...
Oracle DBA 手记 优化,相关数据库培训资料
本资料“MATLAB GUI设计学习手记(第2版)”主要面向初学者,旨在帮助他们快速掌握GUI的设计技巧。 GUI(图形用户界面)在MATLAB中的设计是通过GUIDE(GUI Development Environment)工具完成的,它提供了一个可视化...
初步学习使用,没有添加快照的对比,流程监视选择的项目表现不太明显,根据自己项目再细分析吧