java.time.LocalDateTime.getSecond() 方法示例



说明

java.time.LocalDateTime.getSecond() 方法获取分钟的秒字段。

声明

以下是 java.time.LocalDateTime.getSecond() 方法的声明。

public int getSecond()

返回值

从 0 到 59 的分钟秒。

示例

以下示例展示了 java.time.LocalDateTime.getSecond() 方法的用法。

package com.tutorialspoint;

import java.time.LocalDateTime;

public class LocalDateTimeDemo {
   public static void main(String[] args) {
 
      LocalDateTime date = LocalDateTime.parse("2017-02-03T12:30:30");
      System.out.println(date.getSecond());  
   }
}

让我们编译并运行以上程序,这会产生以下结果 −

30
广告