Java.util.Calendar.complete() 方法

描述

java.util.Calendar.complete() 方法填充日历字段中任何未设置的字段。 首先,如果尚未从日历字段值计算时间值(与 Epoch 的毫秒偏移量),则调用 computeTime() 方法。 然后,调用 computeFields() 方法来计算所有日历字段值。


声明

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

protected void complete()

参数

NA


返回值

此方法不返回任何值。


异常

NA


示例

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

package com.tutorialspoint;

import java.util.*;

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

      // create a new calendar
      CalendarDemo cal = new CalendarDemo();

      // print the current date
      System.out.println("The current date is : " + cal.getTime());

      // clear the calendar
      cal.clear();

      // set a new year and call complete()
      cal.set(GregorianCalendar.YEAR, 1998);
      cal.complete();

      // print the current date
      System.out.println("New date is : " + cal.getTime());
   }
}

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

The current date is : Thu Jun 21 15:32:48 EEST 2012
New date is : Thu Jan 01 00:00:00 EET 1998