ZonedDateTime getSecond() method in Java with Examples

Last Updated : 7 Dec, 2018
The getSecond() method of a ZonedDateTime class is used to get second-of-minute field from this ZonedDateTime.This method returns the integer value for the second from 0 to 59. Syntax:
public int getSecond()
Parameters: This method does not take any parameters. Return value: This method returns an integer representing the second-of-minute, from 0 to 59. Below programs illustrate the getSecond() method: Program 1: Java
// Java program to demonstrate
// ZonedDateTime.getSecond() method

import java.time.*;

public class GFG {
    public static void main(String[] args)
    {

        // create a ZonedDateTime object
        ZonedDateTime zoneddatetime
            = ZonedDateTime.parse(
                "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");

        // get second-of-minute field
        int value = zoneddatetime.getSecond();

        // print result
        System.out.println("second-of-minute:" + value);
    }
}
Output:
second-of-minute:12
Program 2: Java
// Java program to demonstrate
// ZonedDateTime.getSecond() method

import java.time.*;

public class GFG {
    public static void main(String[] args)
    {

        // create a ZonedDateTime object
        ZonedDateTime zoneddatetime
            = ZonedDateTime.parse(
                "2018-10-25T23:12:38.543+02:00[Europe/Paris]");

        // get second-of-minute field
        int value = zoneddatetime.getSecond();

        // print result
        System.out.println("second-of-minute:" + value);
    }
}
Comment