集册 Java实例教程 使用日历的after方法比较日期时间

使用日历的after方法比较日期时间

欢马劈雪     最近更新时间:2020-01-02 10:19:05

544
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
要比较两个不同的日历对象,请使用boolean after(Calendar anotherCal)方法。

 

import java.util.Calendar;
/**来自 
 nowjava - 时代Java**/

 

public class Main {

 

  public static void main(String[] args) {

    Calendar futureCal = Calendar.getInstance();

    futureCal.set(Calendar.YEAR, 2017);

    Calendar now = Calendar.getInstance();

   

    System.out.println("Current date : " + (now.get(Calendar.MONTH) + 1)

                        + "-"

                        + now.get(Calendar.DATE)

                        + "-"

                        + now.get(
展开阅读全文