java反射究竟消耗多少效率

一直以来都对Java反射究竟消耗了多少效率很感兴趣,今晚总算有空进行了一下测试


测试被调用的类和方法


package com.spring.scran;

public class TestMethod {

	public void test() {
		for(int i = 0 ; i < 10; i ++) {
			System.out.print("");
		}
	}
	
	/**
	 * 下面几个方法没什么用的,就放着模拟几个类
	 */
	public void test2() {
		for(int i = 0 ; i < 10000; i ++) {
			System.out.print("");
		}
	}
	
	public void test3() {
		for(int i = 0 ; i < 10000; i ++) {
			System.out.print("");
		}
	}
	public void test4() {
		for(int i = 0 ; i < 10000; i ++) {
			System.out.print("");
		}
	}
}

测试方法的类


package com.spring.aop.test;

import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import com.spring.scran.TestMethod;

public class TestXiao {

	private long start;
	
	private int methodCount = 10000000;
	
	private static Map<String, Method> map = new HashMap<>();
	
	@Before
	public void before(){
		start = System.currentTimeMillis();
	}
	
	@After
	public void after() {
		System.out.println(System.currentTimeMillis() - start);
	}
	
	/**
	 * 普通方法
	 */
	@Test
	public void test1() {
		TestMethod method = new TestMethod();
		for(int i = 0 ; i < methodCount ; i ++) {
			method.test();
		}
	}
	
	/**
	 * 反射执行方法
	 * @throws Exception
	 */
	@Test
	public void test2() throws Exception{
		TestMethod method = new TestMethod();
		for(int i = 0 ; i < methodCount ; i ++) {
			method.getClass().getMethod("test").invoke(method);
		}
	}
	
	/**
	 * 模拟将反射得到的 Method 方法放到缓存中
	 * @throws Exception
	 */
	@Test
	public void test3() throws Exception{
		TestMethod testMethod = new TestMethod();
			for(int i = 0 ; i < methodCount ; i ++) {
			Method method = map.get("test");
			if(method != null) {
				method.invoke(testMethod);
			} else {
				method = testMethod.getClass().getMethod("test");
				map.put("test", method);
				method.invoke(testMethod);
			}
		}
	}
}


测试结果
 普通方法反射方法反射加模拟缓存
第一次8730103689111
第二次8833104029184
第三次8893102909057


根据测试结果来看,可以看出普通执行的方法确实是比反射快点,当然,这真是一个简单的测试,当反射次数越多,消耗的性能肯定就越大

同时可以看到如果把反射得到的 method 放到缓存中,那么反射执行就和普通方法差不多了,所以尽可能的把Method 放到缓存中



评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值