• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

软件测试之Java程序性能测试

发布: 2009-3-19 10:17 | 作者: 不详 | 来源: 测试时代采编 | 查看: 69次 | 进入软件测试论坛讨论

领测软件测试网

  首先我们创建一个接口  
publicinterfaceFoo {publicvoidtestArrayList();publicvoidtestLinkedList(); }        然后我们创建测试对象实现这个接口  
publicclassFooImpl implements Foo {privateList link=newLinkedList();privateList array=newArrayList();publicFooImpl() {for(inti=0;i<10000;i++) { array.add(newInteger(i)); link.add(newInteger(i)); } }publicvoidtestArrayList() {for(inti=0;i<10000;i++) array.get(i); }publicvoidtestLinkedList() {for(inti=0;i<10000;i++) link.get(i); } }        接下来我们要做关键的一步,实现InvocationHandler接口
import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.*;publicclassHandler implements InvocationHandler {privateObject obj;publicHandler(Object obj) {this.obj=obj; }publicstaticObject newInstance(Object obj) { Object result=Proxy.newProxyInstance(obj.getClass().getClassLoader(),
obj.getClass().getInterfaces(),newHandler(obj));return(result); }publicObject invoke(Object proxy, Method method, Object[] args) throws Throwable { Object result;try{ System.out.print("begin method"+method.getName()+"(");for(inti=0; args!=null&&i<args.length; i++) {if(i>0) System.out.print(","); System.out.print(""+args[i].toString()); } System.out.println(")");longstart=System.currentTimeMillis(); result=method.invoke(obj, args);longend=System.currentTimeMillis(); System.out.println("the method"+method.getName()+"lasts"+(end-start)+"ms"); }catch(InvocationTargetException e) {throwe.getTargetException(); }catch(Exception e) {thrownewRuntimeException("unexpected invocation exception:"+e.getMessage()); }finally{ System.out.println("end method"+method.getName()); }returnresult; } }        最后,我们创建测试客户端,
publicclassTestProxy {publicstaticvoidmain(String[] args) {try{ Foo foo=(Foo) Handler.newInstance(newFooImpl()); foo.testArrayList(); foo.testLinkedList(); }catch(Exception e) { e.printStackTrace(); } } }

运行的结果如下:

begin method testArrayList( ) the method testArrayList lasts 0ms end method testArrayList begin method testLinkedList( ) the method testLinkedList lasts 219ms end method testLinkedList        使用动态代理的好处是你不必修改原有代码FooImpl,但是一个缺点是你不得不写一个接口,如果你的类原来没有实现接口的话。  

4.3扩展  
        在上面的例子中演示了利用动态代理比较两个方法的执行时间,有时候通过一次简单的测试进行比较是片面的,因此可以进行多次执行测试对象,从而计算出最差、最好和平均性能。这样,我们才能“加快经常执行的程序的速度,尽量少调用速度慢的程序”。  

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/

22/2<12

关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网