java.util.GregorianCalendar.computeFields()方法实例
java.util.GregorianCalendar.computeFields() 方法以日历字段值转换时间值(毫秒从历元至偏移量)。时间开始不重新计算;为了重新计算时间,然后字段,调用complete方法。
声明
以下是java.util.GregorianCalendar.computeFields()方法的声明
protected void computeFields()
参数
-
NA
返回值
此方法不返回任何值。
异常
-
NA
例子
下面的示例演示java.util.GregorianCalendar.computeFields()方法的用法。
package com.yiibai; 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 fields and print the date cal.computeFields(); 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