- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
LocalTime plus() method in Java
An immutable copy of a LocalTime where the required duration is added to it can be obtained using the plus() method in the LocalTime class in Java. This method requires two parameters i.e. the duration to be added and the TemporalUnit of the duration. Also, it returns the LocalTime object with the required duration added to it.
A program that demonstrates this is given as follows −
Example
import java.time.*; import java.time.temporal.*; public class Demo { public static void main(String[] args) { LocalTime lt = LocalTime.now(); System.out.println("The LocalTime is: " + lt); System.out.println("The LocalTime after adding 30 minutes is: " + lt.plus(30, ChronoUnit.MINUTES)); } }
Output
The LocalTime is: 06:44:51.447 The LocalTime after adding 30 minutes is: 07:14:51.447
Now let us understand the above program.
First the LocalTime is displayed. Then an immutable copy of the LocalTime where 30 minutes are added to it is obtained using the plus() method and this is displayed. A code snippet that demonstrates this is as follows −
LocalTime lt = LocalTime.now(); System.out.println("The LocalTime is: " + lt); System.out.println("The LocalTime after adding 30 minutes is: " + lt.plus(30, ChronoUnit.MINUTES));
- Related Articles
- Instant plus() method in Java
- LocalDate plus() method in Java
- LocalDateTime plus() method in Java
- Duration plus() method in Java
- LocalTime minusNanos() method in Java
- LocalTime minusMinutes() method in Java
- LocalTime minusHours() method in Java
- LocalTime compareTo() method in Java
- LocalTime ofNanoOfDay() method in Java
- LocalTime getMinute() method in Java
- LocalTime get() method in Java
- LocalTime isAfter() method in Java
- LocalTime isBefore() method in Java
- LocalTime getHour() method in Java
- LocalTime getNano() method in Java

Advertisements