java.time.Period.equals() Method Example



Description

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

Declaration

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

public int equals(Period otherPeriod)

Parameters

otherPeriod − the other Period, null returns false.

Return Value

true if the other Period is equal to this one.

Example

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

package com.tutorialspoint;

import java.time.Period;

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

      Period period = Period.ofDays(5);
      Period period1 = Period.ofDays(6);
      System.out.println(period.equals(period1));
   }
}

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

false
Advertisements