黑马程序员技术交流社区

标题: 日历程序的一些小问题。 [打印本页]

作者: qiubaoyang    时间: 2014-6-16 12:32
标题: 日历程序的一些小问题。
  1. import java.text.DateFormatSymbols;
  2. import java.util.*;

  3. /**
  4. * @version 1.4 2007-04-07
  5. * @author Cay Horstmann
  6. */

  7. public class CalendarTest
  8. {
  9.    public static void main(String[] args)
  10.    {
  11.       // construct d as current date
  12. //          Locale.setDefault(Locale.ITALY);
  13.       GregorianCalendar d = new GregorianCalendar();

  14.       int today = d.get(Calendar.DAY_OF_MONTH);

  15.           int month = d.get(Calendar.MONTH);

  16.       // set d to start date of the month
  17.       d.set(Calendar.DAY_OF_MONTH, 1);

  18.       int weekday = d.get(Calendar.DAY_OF_WEEK);

  19.       // get first day of week (Sunday in the U.S.)
复制代码
最后的结果为什么是下面这个样子?


求哪位大神指教???





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2