博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android——Reflect反射——破除限制
阅读量:6611 次
发布时间:2019-06-24

本文共 3259 字,大约阅读时间需要 10 分钟。

个人博客 ,最新文章将会首发,欢迎探索哦 !

同时,搜索微信公众号CoorChice,或扫描文章末尾二维码,可以关注我的微信公众号。同期文章也将会优先推送到微信公众号中,以提醒您有新鲜文章出炉。

简单介绍

java的反射机制使java成为一种动态语言,通过反射机制能够在运行时或的一个对象的所有信息,包括他的包名,它的所有方法和成员变量。当然知道包名可以直接取得该类,从而获得他的实例。

获取Class对象

//通过对象获得:class = b.getClass();//通过完整包类名获得:class = Class.fromName("包名.类名")//本包可以通过.class获得:class = 类名.class

通过反射调用私有方法

//获得类Class
c1 = persen.getClass();try { //通过方法名获得方法,这是私有方法 Method method1 = c1.getDeclaredMethod("method1"); //调用方法私有方法的关键 method1.setAccessible(true); //设置该私有方法可被调用 //方法调用 method1.invoke(c1.newInstance()); //这是带参数的方法,需要在获得方法的时候把参数的类型都加上 Method method2 = c1.getDeclaredMethod("method2",String.class); //调用方法,填写参数 method2.invoke(c1.newInstance(),"kk"); //这是有返回值的方法 Method method3 = c1.getDeclaredMethod("method3"); return (int) method3.invoke(c1.newInstance());} catch (NoSuchMethodException | InvocationTargetException | IllegalAccessException | InstantiationException e) { e.printStackTrace();}

通过反射操作私有属性

Class c1 = persen.getClass();try {    //通过属性名获得属性    Field name = c1.getDeclaredField("name");    //由于是私有属性,所以需要设置它可见    name.setAccessible(true);    //直接修改该对象的该属性的值    name.set(persen,"小明");    //获得该对象的该属性的值    return (String) name.get(persen);} catch (NoSuchFieldException e) {    e.printStackTrace();} catch (IllegalAccessException e) {    e.printStackTrace();}

奉上一个调用反射的帮助类

public static Method getMethod(@NonNull Class
clazz, @NonNull String methodName) throws NoSuchMethodException { Method method = clazz.getDeclaredMethod(methodName); method.setAccessible(true); return method; } public static Method getMethod(@NonNull Class
clazz, @NonNull String methodName, Class... parameterTypes) throws NoSuchMethodException { Method method = clazz.getDeclaredMethod(methodName, parameterTypes); method.setAccessible(true); return method; } public static Method getApiMethod(@NonNull Class
clazz, @NonNull String methodName) throws NoSuchMethodException { Method[] methods = clazz.getDeclaredMethods(); for (Method method : methods) { if (method.getName().contains(methodName)) { method.setAccessible(true); return method; } } return null; } public static void invokeMethod(@NonNull Class
clazz, @NonNull String methodName) throws IllegalAccessException, InstantiationException, InvocationTargetException, NoSuchMethodException { getMethod(clazz, methodName).invoke(clazz.newInstance()); } public static
void invokeMethod(T t, @NonNull String methodName) throws IllegalAccessException, InstantiationException, InvocationTargetException, NoSuchMethodException { getMethod(t.getClass(), methodName).invoke(t); } public static
void invokeApiMethod(T t, @NonNull String methodName, V v, Class... parameterTypes) throws IllegalAccessException, InstantiationException, InvocationTargetException, NoSuchMethodException { getApiMethod(t.getClass(), methodName).invoke(t, v); } public static Field getVariable(@NonNull Class
clazz, @NonNull String variableName) throws NoSuchFieldException { Field variable = clazz.getDeclaredField(variableName); variable.setAccessible(true); return variable; }
img_08b056b059ac831a2d371fa29bdef1e3.jpe
CoorChice的公众号

转载地址:http://dfoso.baihongyu.com/

你可能感兴趣的文章
百度地图车辆运动轨迹
查看>>
使用ReaderWriterLock类实现多用户读/单用户写同步
查看>>
springmvc + mybatis + ehcache + redis架构
查看>>
Python正则表达式初识(十)附正则表达式总结
查看>>
APICLOUD 1.1.0 开发环境搭建
查看>>
索引失效的几个原因
查看>>
五险一金,你清楚吗?
查看>>
repquota命令--Linux命令应用大词典729个命令解读
查看>>
rabbitmq 管理及常用命令
查看>>
6.6 tar打包
查看>>
Spring MVC核心技术
查看>>
TCP协议如何保证传输的可靠性
查看>>
Spring Cloud云架构 - SSO单点登录之OAuth2.0 登出流程(3)
查看>>
软件开发各阶段交付物列表
查看>>
ntp服务器的搭建
查看>>
Tair学习小记
查看>>
web网站加速之CDN(Content Delivery Network)技术原理
查看>>
sed的基本用法
查看>>
ansible模块批量管理
查看>>
RHEL/Centos7新功能
查看>>