Esempio del metodo java.time.YearMonth.compareTo ()

Descrizione

Il java.time.YearMonth.compareTo(YearMonth other) metodo confronta questo anno-mese con un altro anno-mese.

Dichiarazione

Di seguito è riportata la dichiarazione per java.time.YearMonth.compareTo(YearMonth other) metodo.

public int compareTo(YearMonth other)

Parametri

other - l'altro anno-mese con cui confrontare, non nullo.

Valore di ritorno

il valore del comparatore, negativo se minore, positivo se maggiore.

Esempio

L'esempio seguente mostra l'utilizzo del metodo java.time.YearMonth.compareTo (YearMonth other).

package com.tutorialspoint;

import java.time.YearMonth;

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

      YearMonth date = YearMonth.of(2005,11);
      YearMonth date1 = YearMonth.of(2006,11);
      System.out.println(date.compareTo(date1));
   }
}

Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:

-1