- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Period plusYears() method in Java
An immutable copy of the Period object where some years are added to it can be obtained using the plusYears() method in the Period class in Java. This method requires a single parameter i.e. the number of years to be added and it returns the Period object with the added years.
A program that demonstrates this is given as follows
Example
import java.time.Period; public class Demo { public static void main(String[] args) { String period = "P5Y7M15D"; Period p1 = Period.parse(period); System.out.println("The Period is: " + p1); Period p2 = p1.plusYears(3); System.out.println("The Period after adding 3 years is: " + p2); } }
Output
The Period is: P5Y7M15D The Period after adding 3 years is: P8Y7M15D
Now let us understand the above program.
First the current Period is displayed. Then an immutable copy of the Period where 3 years are added is obtained using the plusYears() method and this is displayed. A code snippet that demonstrates this is as follows:
String period = "P5Y7M15D"; Period p1 = Period.parse(period); System.out.println("The Period is: " + p1); Period p2 = p1.plusYears(3); System.out.println("The Period after adding 3 years is: " + p2);
- Related Articles
- LocalDate plusYears() method in Java
- LocalDateTime plusYears() method in Java
- Period ofDays() method in Java
- Period ofMonths() method in Java
- Period ofYears() method in Java
- Period ofWeeks() method in Java
- Period withMonths() method in Java
- Period withYears() method in Java
- Period withDays() method in Java
- Period plusDays() method in Java
- Period equals() method in Java
- Period isNegative() method in Java
- Period plusMonths() method in Java
- Period minusDays() method in Java
- Period minusMonths() method in Java

Advertisements