Open In App

ZoneOffset getTotalSeconds() method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

The getTotalSeconds() method of ZoneOffset Class in java.time package is used to obtain total number of seconds in this instance of ZoneOffset. This method does not takes any parameter and returns an int value. which is the total number of seconds.

Syntax:

public static int getTotalSeconds()

Parameters: This method accepts do not accepts any parameter.

Return Value: This method returns an integer value which is the number of seconds of this ZoneOffset instance.

Below examples illustrate the ZoneOffset.getTotalSeconds() method:

Example 1:




// Java code to illustrate getTotalSeconds() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the ZoneOffset
        ZoneOffset zoneOffset
            = ZoneOffset.ofHours(5);
  
        System.out.println(zoneOffset);
  
        // Using getTotalSeconds() method
        int totalSeconds
 = zoneOffset.getTotalSeconds();
  
        System.out.println("Total seconds: " 
+ totalSeconds);
    }
}


Output:

+05:00
Total seconds: 18000

Example 2:




// Java code to illustrate getTotalSeconds() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the ZoneOffset
        ZoneOffset zoneOffset
            = ZoneOffset.of("Z");
  
        System.out.println(zoneOffset);
  
        // Using getTotalSeconds() method
        int totalSeconds
 = zoneOffset.getTotalSeconds();
  
        System.out.println("Total seconds: "
 + totalSeconds);
    }
}


Output:

Z
Total seconds: 0

Reference: Oracle Doc



Last Updated : 11 Dec, 2018
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads