How arbitary is the start of System.nanoTime()?
Join the DZone community and get the full member experience.
Join For FreeSystem.nanoTime() is defined as having an arbitrary start time. However, there is no reason to make it random and it is based on an unspecified system call. On Centos 5.7 and other Linuxes I have tried, this appears to be based on the uptime.
System.out.println("/proc/uptime " + new Scanner(new FileInputStream("/proc/uptime")).next()); System.out.println("System.nanoTime " + System.nanoTime() / 1e9);prints
/proc/uptime 265671.85 System.nanoTime 265671.854834206
From http://vanillajava.blogspot.com/2011/11/how-arbitary-is-start-of-systemnanotime.html
Uptime
Opinions expressed by DZone contributors are their own.
Comments