Java.util.Calendar.computeFields()方法实例
java.util.Calendar.computeFields() 方法的当前毫秒时间值时间日历fields[]字段值转换。这使得同步与日历字段值与设定的日历对象的新时间。
声明
以下是java.util.Calendar.computeFields()方法的声明
protected abstract void computeFields()
参数
-
NA
返回值
此方法不返回任何值。
异常
-
NA
例子
下面的示例演示java.util.GregorianCalendar.computeFields()方法的用法。
package com.yiibai; 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 computeFields() cal.set(GregorianCalendar.YEAR, 1998); cal.computeFields(); // print the current date System.out.println("New date is : " + cal.getTime()); } }
让我们来编译和运行上面的程序,这将产生以下结果:
The current date is : Thu Jun 21 15:34:36 EEST 2012 New date is : Thu Jun 21 15:34:36 EEST 2012