Java 中 LocalDateTime getSecond() 方法
在 Java 中,可以使用 `LocalDateTime` 类中的 `getSecond()` 方法获取特定 `LocalDateTime` 的秒数。此方法不需要参数,它返回 0 到 59 范围内的秒数。
以下是演示此方法的程序:
示例
import java.time.*; public class Demo { public static void main(String[] args) { LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30"); System.out.println("The LocalDateTime is: " + ldt); System.out.println("The second is: " + ldt.getSecond()); } }
输出
The LocalDateTime is: 2019-02-18T23:15:30 The second is: 30
现在让我们来了解一下上述程序。
首先显示 `LocalDateTime`。然后使用 `getSecond()` 方法显示 `LocalDateTime` 的秒数。下面是一个演示此方法的代码片段:
LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30"); System.out.println("The LocalDateTime is: " + ldt); System.out.println("The second is: " + ldt.getSecond());
广告