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


Java Calendar after()用法及代碼示例


Calendar類after()方法

  • after() 方法可在java.util包。
  • after() 方法用於檢查此日曆時間是否在給定對象的時間表示的時間之後。
  • after() 方法是一個非靜態方法,它可以通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • after() 方法在使用給定時間檢查此日曆時間時不會引發異常。

用法:

    public boolean after(Object time);

參數:

  • Object time– 表示要與此日曆時間進行比較的時間。

返回值:

該方法的返回類型是boolean,當給定時間早於該日曆時間時返回真,否則返回假。

例:

// Java Program to demonstrate the example of
// boolean after(Object) method of Calendar

import java.util.*;

public class AfterOfCalendar {
    public static void main(String[] args) {
        // Instantiating two Calendar object
        Calendar curr_ca = Calendar.getInstance();
        Calendar after_ca = Calendar.getInstance();

        // By using add() method is to add the 
        // 10 months to the current calendar
        after_ca.add(Calendar.MONTH, 10);

        // Display current and after calendar
        System.out.println("curr_ca.getTime():" + curr_ca.getTime());
        System.out.println("after_ca.getTime():" + after_ca.getTime());

        // By using after() method is to check
        // the after_ca time is after the curr_ca
        boolean status = after_ca.after(curr_ca);

        //Display Result
        System.out.println("after_ca.after(curr_ca):" + status);
    }
}

輸出

curr_ca.getTime():Thu Jan 23 11:12:36 GMT 2020
after_ca.getTime():Mon Nov 23 11:12:36 GMT 2020
after_ca.after(curr_ca):true


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Calendar after() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。