The
plusHours() method of
LocalTime class is used to add specified no of Hours value to this LocalTime and return the result as a LocalTime object. This instant is immutable. The calculation wraps around midnight.
Syntax:
public LocalTime plusHours(long hoursToAdd)
Parameters: This method accepts a single parameter
hoursToAdd which is the value of hours to be added, it can be a negative value.
Return value: This method returns a
LocalTime based on this time with the hours added.
Below programs illustrate the plusHours() method:
Program 1:
Output:
LocalTime before addition : 19:34:50.630
LocalTime after addition : 22:34:50.630
Program 2: