📌  相关文章
📜  Java中的 OffsetDateTime getSecond() 方法及示例

📅  最后修改于: 2022-05-13 01:54:38.544000             🧑  作者: Mango

Java中的 OffsetDateTime getSecond() 方法及示例

Java中 OffsetDateTime 类的getSecond()方法用于获取秒字段的值。

句法 :

public int getSecond()

参数:此方法接受不接受任何参数。

返回值:返回秒数,范围为 0 到 59。

下面的程序说明了getSecond()方法:

程序 1:

// Java program to demonstrate the getSecond() method
  
import java.time.OffsetDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // parses a date
        OffsetDateTime date = OffsetDateTime.parse("2018-12-03T12:30:30+01:00");
  
        // Prints the second of given date
        System.out.println("second: " + date.getSecond());
    }
}
输出:
second: 30

方案二

// Java program to demonstrate the getSecond() method
  
import java.time.OffsetDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // parses a date
        OffsetDateTime date = OffsetDateTime.parse("2016-10-03T12:30:30+01:20");
  
        // Prints the second of given date
        System.out.println("second: " + date.getSecond());
    }
}
输出:
second: 30

参考:https: Java/time/OffsetDateTime.html#getSecond–