Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

OffsetDateTime getSecond() method in Java with examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The getSecond() method of OffsetDateTime class in Java is used to get the value of the second-of-minute field.

Syntax :

public int getSecond()

Parameter : This method accepts does not accepts any parameter.

Return Value: It returns the second-of-minute which ranges from 0 to 59.

Below programs illustrate the getSecond() method:

Program 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());
    }
}

Output:

second: 30

Program 2 :




// 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());
    }
}

Output:

second: 30

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html#getSecond–


My Personal Notes arrow_drop_up
Last Updated : 31 Oct, 2019
Like Article
Save Article
Similar Reads
Related Tutorials