java反射耗时测试案例解析

时间:2021-05-19

java反射相对与普通的对象调用原理上来说更加耗时,在调用次数较少的情况下可忽略性能损失,但当调用次数非常多时,需要考虑到此问题,即调用次数过多时不宜使用反射,以下举例:

package com.test.reflection;import java.lang.reflect.Method;public class ReflectionDemo { public static void main(String[] args) throws Exception { // 常规方式 Student student = new Student(); long startNormal = System.currentTimeMillis(); for (int i = 0; i < 1000000; i++) { student.setName("hello"); } System.out.println("timeNormal=" + (System.currentTimeMillis() - startNormal)); //反射方式 Class<?> cla=Class.forName("com.test.reflection.Student"); long startReflection = System.currentTimeMillis(); for (int i = 0; i < 1000000; i++) { Method method=cla.getDeclaredMethod("setName", String.class); method.invoke(cla.newInstance(), "hello"); } System.out.println("timeReflection=" + (System.currentTimeMillis() - startReflection)); }}

运行结果:

timeNormal=8timeReflection=537

这是在简单使用反射调用某个方法的场景下1000000调用的性能差距。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章