Java offsetTime getNano()方法及示例
Java中OffsetTime类的 getNano() 方法用于从这个时间实例中获取纳秒域的值。
语法:
public int getNano()
参数: 该方法不接受任何参数。
返回值: 它返回纳米级的秒数,范围从0到999,999,999。
以下程序说明了getNano()方法。
程序1 :
// Java program to demonstrate the getNano() method
import java.time.OffsetTime;
public class GFG {
public static void main(String[] args)
{
// Parses the time
OffsetTime time = OffsetTime.parse("15:10:30+07:00");
// gets the nano of second in time
System.out.println("nano-second: " + time.getNano());
}
}
输出。
nano-second: 0
程序2 :
// Java program to demonstrate the getNano() method
import java.time.OffsetTime;
public class GFG {
public static void main(String[] args)
{
// Parses the time
OffsetTime time = OffsetTime.parse("11:30:30+06:00");
// gets nano of second in the time
System.out.println("Nano-second: " + time.getNano());
}
}
输出。
Nano-second: 0
参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#getNano-