利用Calendar类测试电脑运行速度
Posted yltzxzy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用Calendar类测试电脑运行速度相关的知识,希望对你有一定的参考价值。
今天学习了很多新知识!
这里使用了Calender类来获取系统时间,并计算循环1w次的时间,判断电脑处理时间。
import java.util.Calendar; public class ArrayCopy { public static void main(String[] args) { test(); } public static void test(){ Calendar instance = Calendar.getInstance(); long s1=System.currentTimeMillis(); for (int i = 0; i < 99999; i++) { System.out.println(i); } long s2=System.currentTimeMillis(); System.out.println(s2-s1+"毫秒"); } }
以上是关于利用Calendar类测试电脑运行速度的主要内容,如果未能解决你的问题,请参考以下文章