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

软件工程

开发平台:

Java

  1. package com.company.section6;
  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. String key1 = "科目1上海";
  9. String key2 = "科目1上海";
  10. //初始化对象池
  11. SignInfoFactory.getSignInfo(key1);
  12. //计算执行10万次需要的时间
  13. long currentTime = System.currentTimeMillis();
  14. for(int i=0;i<1000000;i++){
  15. SignInfoFactory.getSignInfo(key2);
  16. }
  17. long tailTime = System.currentTimeMillis();
  18. System.out.println("执行时间:"+(tailTime - currentTime) + " ms");
  19. }
  20. }