码迷,mamicode.com
首页 > 编程语言 > 详细

java反射耗时测试

时间:2019-10-17 01:24:56      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:tde   throws   测试   差距   col   tno   for   调用次数   name   

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=8
timeReflection=537

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

java反射耗时测试

标签:tde   throws   测试   差距   col   tno   for   调用次数   name   

原文地址:https://www.cnblogs.com/silenceshining/p/11689448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!