System.currentTimeMillis vs System.nanoTime

Posted . Visible to the public.

Fonte

http://stackoverflow.com/questions/351565/system-currenttimemillis-vs-system-nanotime Show archive.org snapshot

Resumindo

Utilizar System.nanoTime é bem mais confiável que System.currentTimeMillis

Exemplo

long startTime = System.nanoTime();
// ... o código sendo medido
long estimatedTime = System.nanoTime() - startTime;
Bruno Vieira
Last edit
Bruno Vieira
Posted by Bruno Vieira to ZeroGlosa (2016-01-29 19:37)