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());

更新于:2019 年 7 月 30 日

55 次浏览

启动您的职业生涯

通过完成课程成为认证专业人士

开始
广告