📜  Java中的 LocalTime getSecond() 方法及示例

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

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

LocalTime 类getSecond()方法用于返回秒字段。该方法返回一个从 0 到 59 的整数值,即一分钟的秒数。

句法:

public int getSecond()

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

返回值:该方法返回一个整数值,表示秒数,范围为 0 到 59。

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

方案一:

// Java program to demonstrate
// LocalTime.getSecond() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // create a LocalTime object
        LocalTime time
            = LocalTime.parse("19:34:50.63");
  
        // get Second field using getSecond()
        int Second = time.getSecond();
  
        // print result
        System.out.println("Second Field: "
                           + Second);
    }
}
输出:
Second Field: 50

方案二:

// Java program to demonstrate
// LocalTime.getSecond() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // create a LocalTime object
        LocalTime time
            = LocalTime.parse("23:14:30.53");
  
        // get Second field using getSecond()
        int Second = time.getSecond();
  
        // print result
        System.out.println("Second Field: "
                           + Second);
    }
}
输出:
Second Field: 30

参考: https: Java/time/LocalTime.html#getSecond()