Java 中的 LocalTime toSecondOfDay() 方法
Java 中的 LocalTime 类的 toSecondOfDay() 方法可用于获得日中的时间(以秒为单位)。此方法不需要参数,且以日中的时间(以秒为单位)的形式返回时间。
实现此功能的程序如下 −
示例
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 seconds of the day are: " + lt.toSecondOfDay()); } }
输出
The LocalTime is: 05:15:30 The seconds of the day are: 18930
现在让我们了解上述程序。
首先显示 LocalTime。然后使用 toSecondOfDay() 方法以日中的时间(以秒为单位)的形式获取时间。下面提供的代码片段演示了此内容 −
LocalTime lt = LocalTime.parse("05:15:30"); System.out.println("The LocalTime is: " + lt); System.out.println("The seconds of the day are: " + lt.toSecondOfDay());
广告