LocalTime withMinute() method in Java


An immutable copy of a LocalTime with the minutes altered as required is done using the method withMinute() in the LocalTime class in Java. This method requires a single parameter i.e. the minute that is to be set in the LocalTime and it returns the LocalTime with the minute altered as required.

A program that demonstrates this is given as follows −

Example

 Live Demo

import java.time.*;
public class Main {
   public static void main(String[] args) {
      LocalTime lt1 = LocalTime.parse("23:15:30");
      System.out.println("The LocalTime is: " + lt1);
      LocalTime lt2 = lt1.withMinute(45);
      System.out.println("The LocalTime with minute altered is: " + lt2);
   }
}

Output

The LocalTime is: 23:15:30
The LocalTime with minute altered is: 23:45:30

Now let us understand the above program.

First the LocalTime is displayed. Then the LocalTime with the minute altered to 45 is displayed using the method withMinute(). A code snippet that demonstrates this is as follows −

LocalTime lt1 = LocalTime.parse("23:15:30");
System.out.println("The LocalTime is: " + lt1);
LocalTime lt2 = lt1.withMinute(45);
System.out.println("The LocalTime with minute altered is: " + lt2);

Updated on: 30-Jul-2019

35 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements