How to measure elapsed time

后端 未结 5 1810
暖寄归人
暖寄归人 2020-11-29 22:09

I have a 10 and 20 question game. I need to count how much time is passed when a user finishes the game.

Timer T=new Timer();
T.scheduleAtFixedRate(new Timer         


        
5条回答
  •  無奈伤痛
    2020-11-29 23:09

    Even better!

    long tStart = System.nanoTime();
    long tEnd = System.nanoTime();
    long tRes = tEnd - tStart; // time in nanoseconds
    

    Read the documentation about nanoTime()!

提交回复
热议问题