HomeLanguagesJavaOffsetDateTime getSecond() method in Java with examples

OffsetDateTime getSecond() method in Java with examples

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–

RELATED ARTICLES

Most Popular

Dominic
32548 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6922 POSTS0 COMMENTS
Nicole Veronica
12039 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12144 POSTS0 COMMENTS
Shaida Kate Naidoo
7059 POSTS0 COMMENTS
Ted Musemwa
7300 POSTS0 COMMENTS
Thapelo Manthata
7016 POSTS0 COMMENTS
Umr Jansen
7005 POSTS0 COMMENTS