stopwatch使用介绍 -亚博电竞手机版
java学习
2020年04月19日 22:35
0
stopwatch是spring核心包中的一个工具类,它是一个简单的秒表工具,可以计时指定代码段的运行时间以及汇总这个运行时间,使用它可以隐藏使用 system.currenttimemillis() ,提高应用程序代码的可读性并减少计算错误的可能性。
注意事项
stopwatch对象不是设计为线程安全的,并且不使用同步。
使用场景
一般是在开发过程中验证性能,而不是作为生产应用程序的一部分
方法介绍
// 构建一个新的秒表,不开始任何任务。 public stopwatch() //构造具有给定id的新秒表。不开始任何任务。 // 参数:id - 此秒表的标识符。当我们从多个秒表输出并需要区分它们时很方便。 public stopwatch(java.lang.string id) //返回此秒表的id。 public java.lang.string getid() // 确定taskinfo数组是否随着时间的推移而构建。当大量使用stopwatch时,将此设置为“false”,否则任务信息结构将消耗过多的内存。默认为“true”。 public void setkeeptasklist(boolean keeptasklist) // 启动一个未命名的任务。如果stop() 调用或计时方法而不调用此方法,则结果未定义。 public void start(); // 启动命名任务。如果stop() 调用或计时方法而不调用此方法,则结果未定义。 // 参数: taskname - 要启动的任务的名称 public void start(java.lang.string taskname) // 停止当前任务。如果在不调用至少一对start()/ stop()方法的情况下调用计时方法,则结果是不确定的 。 public void stop(); //返回秒表当前是否正在运行。 public boolean isrunning() // 返回当前正在运行的任务的名称(如果有)。 @nullable public java.lang.string currenttaskname() // 返回上一个任务所花费的时间。 public long getlasttasktimemillis(); // 返回上一个任务的名称。 public java.lang.string getlasttaskname() // 将最后一个任务作为taskinfo对象返回。 public stopwatch.taskinfo getlasttaskinfo(); // 返回所有任务的总时间(以毫秒为单位)。 public long gettotaltimemillis(); //返回所有任务的总时间(以秒为单位)。 public double gettotaltimeseconds(); //返回定时任务的数量。 public int gettaskcount(); //返回执行任务的数据数组。 public stopwatch.taskinfo [] gettaskinfo(); //返回总运行时间的简短描述。 public java.lang.string shortsummary(); // 返回一个字符串,其中包含描述所执行任务的表。 public java.lang.string prettyprint(); //返回描述所有已执行任务的信息性字符串对于自定义报告 public java.lang.string tostring();
实际应用
public class stopwatchtest { public static void main(string[] args) throws interruptedexception { stopwatch stopwatch = new stopwatch("测试秒表"); stopwatch.start("暂停100毫秒"); thread.sleep(100 * 1); stopwatch.stop(); stopwatch.start("暂停200毫秒"); thread.sleep(100 * 2); stopwatch.stop(); stopwatch.start("暂停300毫秒"); thread.sleep(100 * 3); stopwatch.stop(); stopwatch.setkeeptasklist(true); //是否构建taskinfo信息 arrays.stream(stopwatch.gettaskinfo()).foreach(sw -> system.out.println(sw.gettaskname() " " sw.gettimemillis() " " sw.gettimeseconds())); // 在start()方法和stop()方法间时,isrunning()返回true system.out.println(stopwatch.isrunning()); system.out.println(stopwatch.prettyprint());//打印详细信息 system.out.println(stopwatch.shortsummary());//打印简要信息 } }
打印效果
暂停100毫秒 110 0.11 暂停200毫秒 201 0.201 暂停300毫秒 310 0.31 false stopwatch '测试秒表': running time (millis) = 621 ----------------------------------------- ms % task name ----------------------------------------- 00110 018% 暂停100毫秒 00201 032% 暂停200毫秒 00310 050% 暂停300毫秒 stopwatch '测试秒表': running time (millis) = 621
展开全文