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