java.lang.System.nanoTime()方法實例
java.lang.System.nanoTime() 方法返回最精確的可用係統計時器的當前值,以毫微秒為單位。返回的值表示從一些固定的,任意時間納秒(在未來,那麼值可以是負的),並提供納秒精度,但不一定是納秒級的精度。
聲明
以下是java.lang.System.nanoTime()方法的聲明
public static long nanoTime()
參數
-
NA
返回值
此方法返回係統計時器的當前值,以毫微秒為單位。
異常
-
NA
例子
下麵的例子顯示java.lang.System.nanoTime()方法的使用。
package com.yiibai; import java.lang.*; public class SystemDemo { public static void main(String[] args) { // returns the current value of the system timer, in nanoseconds System.out.print("time in nanoseconds = "); System.out.println(System.nanoTime()); // returns the current value of the system timer, in milliseconds System.out.print("time in milliseconds = "); System.out.println(System.currentTimeMillis()); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
time in nanoseconds = 255073580723571 time in milliseconds = 1349311227921