Java.util.Calendar.clear() 方法

描述

java.util.Calendar.clear() 方法设置 all 日历字段值和此日历 undefined 的时间值。日历实现类可以使用默认字段值进行日期和时间计算。


声明

以下是 java.util.Calendar.clear() 方法的声明

public final void clear()

参数

NA


返回值

此方法不返回任何值。


异常

NA


示例

下面的例子展示了 java.util.Calendar.clear() 方法的使用。

package com.tutorialspoint;

import java.util.*;

public class CalendarDemo {
   public static void main(String[] args) {
   
      // create calendar object
      Calendar cal = Calendar.getInstance();

      // displays the current date and time
      System.out.println("Current Calendar Date: " + cal.getTime());

      // use clear method to set all field values and time value as undefined.
      cal.clear();

      // print the result
      System.out.println("The calendar shows : " + cal.getTime());
   }
}

让我们编译并运行上面的程序,这将产生以下结果 −

Current Calendar Date: Sat May 05 15:31:36 EEST 2012
The calendar shows : Thu Jan 01 00:00:00 EET 1970