目录
- 1 LocalDateTime 和 LocalDate 与 date 有什么区别
- 2 LocalDateTime 示例:
- 2 LocalDate 示例:
1 LocalDateTime 和 LocalDate 与 date 有什么区别
LocalDateTime、LocalDate和Date是
Java中不同的类库中用于表示日期和时间的类,
它们在功能和使用上有一些区别。
LocalDateTime是Java 8中引入的java.time包中的一个类。
它表示不带时区信息的日期和时间。LocalDateTime包含日期
和时间组成部分,如年、月、日、小时、分钟和秒。
LocalDateTime是不可变的,提供了各种方法来操作
和提取日期和时间值。它适用于需要同时处理日期和
时间信息的场景。
LocalDate也是java.time包中的一个类,
它表示不带时区信息的日期。与LocalDateTime不同,
LocalDate只包含日期部分,没有时间部分。
它提供了方法来操作和提取日期值,但不包括时间信息。
Date是Java早期版本中的一个类,它位于java.util包中。
它表示特定的日期和时间,包括年、月、日、小时、分钟和秒。
然而,Date类在设计上存在一些问题,它不是线程安全的,
也没有提供良好的日期和时间操作方法。
Java 8引入的java.time包中的LocalDateTime
和LocalDate类更推荐在新的代码中使用。
总的来说,LocalDateTime适用于同时处理日期和时间的场景,
LocalDate适用于只需要操作日期的场景,
而Date是Java早期版本的类,不推荐在新的代码中使用。
Date类不是线程安全的,LocalDateTime 和 LocalDate是,所以以后使用LocalDateTime 和 LocalDate
2 LocalDateTime 示例:
获取当前时间的 年月日时分秒
LocalDateTime now = LocalDateTime.now();
System.out.println(now);
创建指定日期和时间的LocalDateTime对象:
LocalDateTime dateTime = LocalDateTime.of(2021, Month.JANUARY, 1, 10, 30);
System.out.println(dateTime);
获取LocalDateTime对象的日期部分和时间部分:
public static void main(String[] args) {
LocalDateTime dateTime = LocalDateTime.of(2021, Month.JANUARY, 1, 10, 30,44);
System.out.println(dateTime);
LocalDate date = dateTime.toLocalDate();
LocalTime time = dateTime.toLocalTime();
System.out.println("Date: " + date);
System.out.println("Time: " + time);
}
添加时间量到LocalDateTime对象:
LocalDateTime newDateTime = dateTime.plusDays(1).plusHours(2);
System.out.println(newDateTime);
比较两个LocalDateTime对象的先后顺序:
LocalDateTime dateTime1 = LocalDateTime.of(2021, Month.JANUARY, 1, 10, 30);
LocalDateTime dateTime2 = LocalDateTime.of(2021, Month.JANUARY, 2, 8, 0);
boolean isBefore = dateTime1.isBefore(dateTime2);
System.out.println(isBefore);
2 LocalDate 示例:
创建当前日期的LocalDate对象:
LocalDate today = LocalDate.now();
System.out.println(today);
创建指定日期的LocalDate对象:
LocalDate date = LocalDate.of(2021, Month.JANUARY, 1);
System.out.println(date);
获取LocalDate对象的年、月、日:
int year = date.getYear();
Month month = date.getMonth();
int day = date.getDayOfMonth();
System.out.println("Year: " + year);
System.out.println("Month: " + month);
System.out.println("Day: " + day);
添加日期量到LocalDate对象:
LocalDate newDate = date.plusWeeks(2).plusDays(1);
System.out.println(newDate);
比较两个LocalDate对象的先后顺序:
LocalDate date1 = LocalDate.of(2021, Month.JANUARY, 1);
LocalDate date2 = LocalDate.of(2021, Month.JANUARY, 2);
boolean isBefore = date1.isBefore(date2);
System.out.println(isBefore);