Year plus(long,unit) method in Java with Examples Last Updated : 24 Jul, 2019 Comments Improve Suggest changes Like Article Like Report The plus(long, unit) method of Year class is used to return a copy of this year after adding the specified amount of unit to this Year object.An exception is thrown, If the specified unit cannot be added to this Year object. This instance is immutable and unaffected by this method call. Syntax: public Year plus(long amountToadd, TemporalUnit unit) Parameters: This method accepts two parameters: amountToadd: This parameter represents the amount of the unit to add to the result. unit: This parameter represents the unit of the amount to add. Return Value: This method returns a Year based on this year with the specified amount added. Exception: This method throws following Exceptions: DateTimeException - This exception is thrown if the addition cannot be made. UnsupportedTemporalTypeException - This exception is thrown if the unit is not supported. ArithmeticException - This exception is thrown if numeric overflow occurs. Below programs illustrate the plus(long, unit) method: Program 1: Java // Java program to demonstrate // Year.plus(long, unit) method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create a Year object Year year = Year.of(2019); // print instance System.out.println("Year :" + year); // apply plus(long, unit) method // adding 30 years Year value = year.plus(30, ChronoUnit.YEARS); // print result System.out.println("After addition year: " + value); } } Output: Year :2019 After addition year: 2049 Program 2: Java // Java program to demonstrate // Year.plus(long, unit) method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create a Year object Year year = Year.of(2022); // print instance System.out.println("Year :" + year); // apply plus(long, unit) method // adding 50 years Year value = year.plus(50, ChronoUnit.YEARS); // print result System.out.println("After addition year: " + value); } } Output: Year :2022 After addition year: 2072 References: https://docs.oracle.com/javase/10/docs/api/java/time/Year.html#plus(long, java.time.temporal.TemporalUnit) Comment More infoAdvertise with us Next Article Year plus(long,unit) method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java-Functions Java 8 Java-Year Practice Tags : Java Similar Reads Year minus(long,unit) method in Java with Examples The minus(long, unit) method of Year class is used to return a copy of this year after subtracting the specified amount of unit from this Year object.An exception is thrown, If the specified unit cannot be subtracted from Year. This instance is immutable and unaffected by this method call. Syntax: p 2 min read YearMonth plus(long,unit) method in Java with Examples The plus(long, unit) method of YearMonth class used to return a copy of this Year-month after adding the specified amount of TemporalUnit to this Year-month object. An exception is thrown, If the specified unit cannot be added to Year-month. This instance is immutable and unaffected by this method c 2 min read YearMonth minus(long,unit) method in Java with Examples The minus(long, unit) method of YearMonth class is used to return a copy of this Year-month after subtracting the specified amount of TemporalUnit from this Year-month object.An exception is thrown, If the specified unit cannot be subtracted from Year-month. This instance is immutable and unaffected 2 min read Year until() Method in Java with Examples until() method of the Year class used to calculate the amount of time between two Year objects using TemporalUnit. The start and end points are this and the specified Year passed as a parameter. The result will be negative if the end is before the start. The calculation returns a whole number, repre 2 min read Year length() method in Java with Examples The length() method of Year class in Java is used to return the length of this year object's value in number of days. There can be only two possible lengths of Year, 365(Non-leap years) and 366(Leap years). Syntax: public int length() Parameter: This method does not accepts any parameter. Return Val 1 min read Like