Java offsetTime getSecond()方法及示例

Java offsetTime getSecond()方法及示例

Java中OffsetTime类的 getSecond() 方法用于从该offsetTime实例中获取分钟第二字段的值。

语法:

public int getSecond()

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

返回值: 它返回从0到59的分钟的秒数。

以下程序说明了getSecond()方法。

程序1 :

// Java program to demonstrate the getSecond() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the time
        OffsetTime time = OffsetTime.parse("15:10:30+07:00");
  
        // gets the second in time
        System.out.println("second: " + time.getSecond());
    }
}

输出。

second: 30

输出。

second: 30

程序2 :

// Java program to demonstrate the getSecond() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the time
        OffsetTime time = OffsetTime.parse("11:30:50+06:00");
  
        // gets the second in time
        System.out.println("second: " + time.getSecond());
    }
}

输出。

second: 50

参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#getSecond-

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程