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


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



描述

這個java.util.Calendar.computeFields()方法用於將 fields[] 中的當前日曆字段值轉換為毫秒時間值 time。

聲明

以下是聲明java.util.Calendar.computeFields()方法

protected abstract void computeTime()

參數

NA

返回值

此方法不返回任何值。

異常

NA

示例

下麵的例子展示了 java.util.Calendar.computeTime() 方法的用法。

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 computeTime()
      cal.set(GregorianCalendar.YEAR, 1998);
      cal.computeTime();

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

讓我們編譯並運行上麵的程序,這將產生以下結果——

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

相關用法


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