Java.util.GregorianCalendar.computeTime() 方法

描述

java.util.GregorianCalendar.computeTime() 方法将日历字段值转换为时间值(从 Epoch 开始的毫秒偏移量)。


声明

以下是 java.util.GregorianCalendar.computeTime() 方法的声明

protected void computeTime()

参数

NA


返回值

此方法不返回值。


异常

NA


示例

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

package com.tutorialspoint;

import java.util.*;

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

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

      // print the current date and time
      System.out.println("" + cal.getTime());

      // set a new year
      cal.set(GregorianCalendar.YEAR, 1992);
      System.out.println("" + cal.getTime());

      // compute time and print the date
      cal.computeTime();
      System.out.println("" + cal.getTime());
   }
}

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

Wed Jun 20 17:25:58 EEST 2012
Sat Jun 20 17:25:58 EEST 1992
Sat Jun 20 17:25:58 EEST 1992