Java2024/src/chapter5/Example21.java
2024-11-12 09:41:23 +08:00

25 lines
957 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package chapter5;
import java.time.LocalDate;
public class Example21 {
public static void main(String[] args) {
LocalDate now = LocalDate.now();
LocalDate of = LocalDate.of(2015, 12, 12);
System.out.println("今年是" + now.getYear() + "");
System.out.println("月份:" + now.getMonth());
System.out.println("月份:" + now.getMonthValue());
System.out.println("日期:" + now.getDayOfMonth());
System.out.println("今年中的第几天:" + now.getDayOfYear());
System.out.println("周几:" + now.getDayOfWeek());
System.out.println("====判断相关的方法====");
System.out.println("of是否在now之前" + of.isBefore(now));
System.out.println("of是否在now之后" + of.isAfter(now));
System.out.println("of和now是否相等" + of.isEqual(now));
System.out.println("of是否闰年" + of.isLeapYear());
}
}