Client.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section5;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class Client {
  7. public static void main(String[] args) {
  8. //初始化对象池
  9. ExtrinsicState state1 = new ExtrinsicState();
  10. state1.setSubject("科目1");
  11. state1.setLocation("上海");
  12. SignInfoFactory.getSignInfo(state1);
  13. ExtrinsicState state2 = new ExtrinsicState();
  14. state2.setSubject("科目1");
  15. state2.setLocation("上海");
  16. //计算执行10万次需要的时间
  17. long currentTime = System.currentTimeMillis();
  18. for(int i=0;i<1000000;i++){
  19. SignInfoFactory.getSignInfo(state2);
  20. }
  21. long tailTime = System.currentTimeMillis();
  22. System.out.println("执行时间:"+(tailTime - currentTime) + " ms");
  23. }
  24. }