当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Calendar before()用法及代码示例


Calendar类before()方法

  • before() 方法可在java.util包。
  • before() 方法用于检查此日历时间是否早于给定对象的时间表示的时间。
  • before() 方法是一个非静态方法,它可以通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • before() 方法在使用给定对象检查此对象时不会引发异常。

用法:

    public boolean before(Object time);

参数:

  • Object time– 表示要与此日历时间进行比较的时间。

返回值:

该方法的返回类型是boolean,当此日历时间早于给定对象表示的时间时返回真,否则返回假。

例:

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

import java.util.*;

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

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

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

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

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

输出

curr_ca.getTime():Thu Jan 23 11:18:28 GMT 2020
before_ca.getTime():Sat Mar 23 11:18:28 GMT 2019
before_ca.before(curr_ca):true


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Calendar before() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。