我正在做一个作业,它涉及使用 GregorianCalendar。规范说我需要使用 setLenient(false); 我该怎么做呢?我还需要设置一个固定日期(2009 年 1 月 1 日),这样我的程序的第一天就一直是这样。
它还说通过以下方式访问日、月和年:
get(1) //returns the year
get(2) // returns the month
get(5) /// returns the day
要将日期添加 n 天,请使用字段编号 5 调用 add 方法: add(5, n);
减法:add(5, -n);
有人可以解释这意味着什么以及如何实施吗?