1. 程式人生 > >求出某個月或某年有多少天,如2008年2月或2008年?

求出某個月或某年有多少天,如2008年2月或2008年?

ont 下載 ext download title index ava static gin

題目6: 2008年2月有多少天?那年有多少天? (視頻下載) (全部書籍)


import java.util.*;
public class Test {
public static void main(String[] args) {
Date date;
Calendar time=Calendar.getInstance();
// time.clear();
/*先把時間定位在2008年2月*/
time.set(Calendar.YEAR,2008);
time.set(Calendar.MONTH,1);//2月對應數字1,
/* int getActualMaximum(int field) Return the maximum value that this field could have, given the
current date. 下句話是按月來講的最大天數而不是按年來講的最大天數,那不是29嗎? */
int day=time.getActualMaximum(Calendar.DAY_OF_MONTH);
System.out.println("day is"+day);
/* 下句話是按年來講的最大天數而不是按月來講的天數,那不是366嗎?
。。。。。。。。。。。。。。。
詳情請見:http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner2_web.html#CalculateHowManyDays

求出某個月或某年有多少天,如2008年2月或2008年?