其实通过代码我们可以发现,是Class.forName这个方法比较耗时,它实际上调用了一个本地方法,通过这个方法来要求JVM查找并加载指定的类。所以我们在项目中使用的时候,可以把Class.forName返回的Class对象缓存起来,下一次使用的时候直接从缓存里面获取,这样就极大的提高了获取Class的效率。同理,在我们获取Constructor、Method等对象的时候也可以缓存起来使用,避免每次使用时再来耗费时间创建。
测试反射调用方法
- @Test
- public void testReflexMethod() throws Exception {
- long start = System.currentTimeMillis();
- Class testUserClass = Class.forName("RefleDemo.TestUser");
- TestUser testUser = (TestUser) testUserClass.newInstance();
- Method method = testUserClass.getMethod("sayHi");
- int i = 0;
- while(i<100000000){
- ++i;
- method.invoke(testUser);
- }
- long end = System.currentTimeMillis();
- System.out.println("反射调用方法耗时:"+(end - start ) + "ms");
- }
- //反射调用方法耗时:330ms
- @Test
- public void testReflexMethod() throws Exception {
- long start = System.currentTimeMillis();
- Class testUserClass = Class.forName("RefleDemo.TestUser");
- TestUser testUser = (TestUser) testUserClass.newInstance();
- Method method = testUserClass.getMethod("sayHi");
- int i = 0;
- while(i<100000000){
- ++i;
- method.setAccessible(true);
- method.invoke(testUser);
- }
- long end = System.currentTimeMillis();
- System.out.println("setAccessible=true 反射调用方法耗时:"+(end - start ) + "ms");
- }
- //setAccessible=true 反射调用方法耗时:188ms
(编辑:常州站长网)
【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!
|