java.time.Year.equals() Method Example



Description

The java.time.Year.equals(Year otherYear) method checks if this Year is equal to the specified Year.

Declaration

Following is the declaration for java.time.Year.equals(Year otherYear) method.

public int equals(Year otherYear)

Parameters

otherYear − the other Year, null returns false.

Return Value

true if the other Year is equal to this one.

Example

The following example shows the usage of java.time.Year.equals(Year otherYear) method.

package com.tutorialspoint;

import java.time.Year;

public class YearDemo {
   public static void main(String[] args) {

      Year date = Year.of(2005);
      Year date1 = Year.of(2006);
      System.out.println(date.equals(date1));
   }
}

Let us compile and run the above program, this will produce the following result −

false
Advertisements