怕孤独砖头

文章
4
资源
0
加入时间
3年0月7天

java8 新的时期和时间API

java.time包中提供了许多新类。       LocalDate:获取日期 LocalDate date1 = LocalDate.of(2017, 8, 11); LocalDate date2 = LocalDate.now(); int year = date1.getYear(); int month = date1.getMonthValue(); int