Java 中的 LocalTime toNanoOfDay() 方法
可以使用 Java 中 LocalTime 类中的 toNanoOfDay() 方法获取当天的纳秒形式。此方法不需要参数,并且以纳秒形式返回当天时间。
下面给出了一个演示此操作的程序 −
示例
import java.time.*; public class Main { public static void main(String[] args) { LocalTime lt = LocalTime.parse("05:15:30"); System.out.println("The LocalTime is: " + lt); System.out.println("The nanoseconds of the day are: " + lt.toNanoOfDay()); } }
输出
The LocalTime is: 05:15:30 The nanoseconds of the day are: 18930000000000
现在让我们了解上述程序。
首先显示 LocalTime。然后使用 toNanoOfDay() 方法以纳秒形式获取当天的时间。演示此操作的代码片段如下 −
LocalTime lt = LocalTime.parse("05:15:30"); System.out.println("The LocalTime is: " + lt); System.out.println("The nanoseconds of the day are: " + lt.toNanoOfDay());
广告