Year minus(TemporalAmount) method in Java with Examples Last Updated : 25 Feb, 2019 Comments Improve Suggest changes Like Article Like Report The minus(TemporalAmount) method of Year class is used to return a copy of this year after subtracting the specified amount of TemporalAmount from this Year object. An exception is thrown, If the specified unit cannot be subtracted from Year. The TemporalAmount passed is created from the Period object. This instance is immutable and unaffected by this method call. Syntax: public Year minus(TemporalAmount amountToSubtract) Parameters: This method accepts only one parameter TemporalAmount which represents the amount to subtract from Year object. Return Value: This method returns a Year based on this year with the specified amount subtracted. Exception: This method throws following Exceptions: DateTimeException - This exception is thrown if the subtraction cannot be made. ArithmeticException - This exception is thrown if numeric overflow occurs. Below programs illustrate the minus(TemporalAmount amountToSubtract) method: Program 1: Java // Java program to demonstrate // Year.minus(TemporalAmount amountToSubtract) 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); // create temporalAmount object from period class // passing temporalAmount to // minus() method Year value = year.minus( Period.ofYears(40)); // print result System.out.println("Value after Subtraction: " + value); } } Output: Year :2019 Value after Subtraction: 1979 Program 2: Java // Java program to demonstrate // Year.minus(TemporalAmount amountToSubtract) 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); // create temporalAmount object from period class // passing temporalAmount to // minus() method Year value = year.minus( Period.ofYears(20)); // print result System.out.println("Value after Subtraction: " + value); } } Output: Year :2019 Value after Subtraction: 1999 References: https://docs.oracle.com/javase/10/docs/api/java/time/Year.html#minus(java.time.temporal.TemporalAmount) Comment A AmanSingh2210 Follow 0 Improve A AmanSingh2210 Follow 0 Improve Article Tags : Java Java-Functions Java 8 Java-Year Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings8 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java9 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages7 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java5 min readJava Comparator Interface6 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java10 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management4 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like