Java8新特性 第13课-localDateTime类

LocalDateTime类用于表示日期和时间。

LocalDateTime类的常用方法:

1 LocalDateTime.now():获取系统当前时间。

2 LocalDateTime.of(int year,int month,int dayOfMonth

  int hour,int minute,int second)

  按指定日期和时间创建LocalDateTime对象。

3getYear():返回日期中的年份。

4getMonth():返回日期中的月份。

5getDayOfMonth():返回月份中的日。

6getHour():返回小时。

7getMinute():返回分钟。

8getSecond():返回秒。

案例LocalDateTime获取当前日期和时间

Java8新特性 第13课-localDateTime类_第1张图片


你可能感兴趣的:(jdk1.8)