OffsetTime plusSecond() method in Java with Examples

Last Updated : 31 Dec, 2018
The plusSeconds() method of OffsetTime class is used to add specified number of seconds value to this OffsetTime and return the result as a OffsetTime object. This instant is immutable. The calculation wraps around midnight. Syntax:
public OffsetTime plusSeconds(long SecondsToAdd)
Parameters: This method accepts a single parameter SecondsToAdd which is the value of Seconds to be added, it can be a negative value. Return value: This method returns a OffsetTime based on this time with the Seconds added. Below programs illustrate the plusSeconds() method: Program 1: Java
// Java program to demonstrate
// OffsetTime.plusSeconds() method

import java.time.*;

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

        // create a OffsetTime object
        OffsetTime time
            = OffsetTime.parse("21:15:10+11:10");

        // print OffsetTime
        System.out.println("OffsetTime before addition: "
                           + time);

        // add 200 Seconds using plusSeconds()
        OffsetTime value = time.plusSeconds(200);

        // print result
        System.out.println("OffsetTime after addition: "
                           + value);
    }
}
Output:
OffsetTime before addition: 21:15:10+11:10
OffsetTime after addition: 21:18:30+11:10
Program 2: Java
// Java program to demonstrate
// OffsetTime.plusSeconds() method

import java.time.*;

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

        // create a OffsetTime object
        OffsetTime time
            = OffsetTime.parse("14:25:10+01:10");

        // print OffsetTime
        System.out.println("OffsetTime before addition: "
                           + time);

        // add -3400 Seconds using plusSeconds()
        OffsetTime value = time.plusSeconds(-3400);

        // print result
        System.out.println("OffsetTime after addition: "
                           + value);
    }
}
Output:
OffsetTime before addition: 14:25:10+01:10
OffsetTime after addition: 13:28:30+01:10
References: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#plusSeconds-long-
Comment