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


Java Java.util.Calendar.complete()用法及代碼示例



描述

這個java.util.Calendar.complete()方法填充日曆字段中任何未設置的字段。首先,如果尚未根據日曆字段值計算時間值(距紀元的毫秒偏移量),則調用 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

相關用法


注:本文由純淨天空篩選整理自 Java.util.Calendar.complete() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。