java.util.Calendar.computeTime() 方法用於轉換當前日歷欄位值的fields[]到毫秒時間值的時間。
以下是java.util.Calendar.computeTime()方法的宣告
protected abstract void computeTime()
NA
此方法不返回任何值。
NA
下面的範例演示java.util.Calendar.computeTime()方法的用法。
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 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