不需要記住咸作,知道有什么方法怎么用就好了
getYear()? ? int? ? 獲取當(dāng)前日期的年份
getMonth()? ? Month? ? 獲取當(dāng)前日期的月份對象
getMonthValue()? ? int? ? 獲取當(dāng)前日期是第幾月
getDayOfWeek()? ? DayOfWeek? ? 表示該對象表示的日期是星期幾
getDayOfMonth()? ? int? ? 表示該對象表示的日期是這個月第幾天
getDayOfYear()? ? int? ? 表示該對象表示的日期是今年第幾天
withYear(int year)? ? LocalDate? ? 修改當(dāng)前對象的年份
withMonth(int month)? ? LocalDate? ? 修改當(dāng)前對象的月份
withDayOfMonth(int dayOfMonth)? ? LocalDate? ? 修改當(dāng)前對象在當(dāng)月的日期
isLeapYear()? ? boolean? ? 是否是閏年
lengthOfMonth()? ? int? ? 這個月有多少天
lengthOfYear()? ? int? ? 該對象表示的年份有多少天(365或者366)
plusYears(long yearsToAdd)? ? LocalDate? ? 當(dāng)前對象增加指定的年份數(shù)
plusMonths(long monthsToAdd)? ? LocalDate? ? 當(dāng)前對象增加指定的月份數(shù)
plusWeeks(long weeksToAdd)? ? LocalDate? ? 當(dāng)前對象增加指定的周數(shù)
plusDays(long daysToAdd)? ? LocalDate? ? 當(dāng)前對象增加指定的天數(shù)
minusYears(long yearsToSubtract)? ? LocalDate? ? 當(dāng)前對象減去指定的年數(shù)
minusMonths(long monthsToSubtract)? ? LocalDate? ? 當(dāng)前對象減去注定的月數(shù)
minusWeeks(long weeksToSubtract)? ? LocalDate? ? 當(dāng)前對象減去指定的周數(shù)
minusDays(long daysToSubtract)? ? LocalDate? ? 當(dāng)前對象減去指定的天數(shù)
compareTo(ChronoLocalDate other)? ? int? ? 比較當(dāng)前對象和other對象在時間上的大小,返回值如果為正嘉汰,則當(dāng)前對象時間較晚醋寝,
isBefore(ChronoLocalDate other)? ? boolean? ? 比較當(dāng)前對象日期是否在other對象日期之前
isAfter(ChronoLocalDate other)? ? boolean? ? 比較當(dāng)前對象日期是否在other對象日期之后
isEqual(ChronoLocalDate other)? ? boolean? ? 比較兩個日期對象是否相等