Wednesday, July 3, 2024
HomeLanguagesJavaLocalTime minusSeconds() method in Java with Examples

LocalTime minusSeconds() method in Java with Examples

The minusSeconds() method of LocalTime class is used to subtract specified no of Seconds value from this LocalTime and return the result as a LocalTime object. This instant is immutable. The calculation wraps around midnight.

Syntax:

public LocalTime minusSeconds(long SecondsToSubtract)

Parameters: This method accepts a single parameter SecondsToSubtract which is the value of Seconds to be subtracted, it can be a negative value.

Return value: This method returns a LocalTime based on this time with the Seconds subtracted.

Below programs illustrate the minusSeconds() method:

Program 1:




// Java program to demonstrate
// LocalTime.minusSeconds() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalTime object
        LocalTime time
            = LocalTime.parse("19:34:50.63");
  
        // print LocalTime
        System.out.println("LocalTime before subtraction: "
                           + time);
  
        // subtract 200 Seconds using minusSeconds()
        LocalTime value = time.minusSeconds(200);
  
        // print result
        System.out.println("LocalTime after subtraction: "
                           + value);
    }
}


Output:

LocalTime before subtraction: 19:34:50.630
LocalTime after subtraction: 19:31:30.630

Program 2:




// Java program to demonstrate
// LocalTime.minusSeconds() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalTime object
        LocalTime time
            = LocalTime.parse("01:00:01");
  
        // print LocalTime
        System.out.println("LocalTime before subtraction: "
                           + time);
  
        // subtract -3400 Seconds using minusSeconds()
        LocalTime value = time.minusSeconds(-3400);
  
        // print result
        System.out.println("LocalTime after subtraction: "
                           + value);
    }
}


Output:

LocalTime before subtraction: 01:00:01
LocalTime after subtraction: 01:56:41

References: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#minusSeconds(long)

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments