📌  相关文章
📜  comment calculer le temps d'execution d'un program en java 代码示例

📅  最后修改于: 2022-03-11 14:52:12.463000             🧑  作者: Mango

代码示例1
long start = System.currentTimeMillis();
Thread.currentThread().sleep(1000);
System.out.println("Run time : " + (System.currentTimeMillis() - start));