當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.util.Calendar.compareTo()用法及代碼示例



描述

這個java.util.Calendar.compareTo()方法比較 Calendar 對象和 anotherCalendar 對象之間的時間值(毫秒偏移量)。

聲明

以下是聲明java.util.Calendar.compareTo()方法

public int compareTo(Calendar anotherCalendar)

參數

anotherCalendar- 要比較的日曆對象。

返回值

如果參數表示的時間等於此 Calendar 對象表示的時間,則該方法返回 0;如果此 Calendar 的時間早於參數所表示的時間,則為小於 0 的值;如果此日曆的時間在表示的時間之後,則為大於 0 的值。

異常

  • NullPointerException- 如果指定的日曆為空。

  • IllegalArgumentException− 如果無法獲取指定 Calendar 對象的時間值

示例

下麵的例子展示了 java.util.calendar.compareTo() 方法的用法。

package com.tutorialspoint;

import java.util.*;

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

      // create two calendar at the different dates
      Calendar cal1 = new GregorianCalendar(2015, 8, 15);
      Calendar cal2 = new GregorianCalendar(2008, 1, 02);

      // compare the time values represented by two calendar objects.
      int i = cal1.compareTo(cal2);

      // return positive value if equals else return negative value
      System.out.println("The result is:"+i);

      // compare again but with the two calendars swapped
      int j = cal2.compareTo(cal1);

      // return positive value if equals else return negative value
      System.out.println("The result is:" + j);
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

The result is:1
The result is:-1

相關用法


注:本文由純淨天空篩選整理自 Java.util.Calendar.compareTo() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。