学习小结
15.4 日期操作类
15.4.1 日期类
类名 | 说明 |
---|---|
LocalDateTime | 存储日期和时间,如2018-5-14T00:34:54.031 |
LocalDate | 存储日期,如2018-5-14 |
LocalTime | 存储日期,如00:34:54.031 |
范例 15-9 取得当前的日期时间
package com.Javastudy2;
import java.time.LocalDateTime;
/**
* @author Y.W.
* @date 2018年5月14日 上午12:37:39
* @Description TODO 取得当前的日期时间
*/
public class P394_15_9 {
public static void main(String[] args) {
// 新建一个LocalDateTime对象获取当前时间
LocalDateTime locaDateTime = LocalDateTime.now();
System.out.println(locaDateTime); // 直接输出对象
}
}
运行结果:
范例 15-10 判断是否为闰年
package com.Javastudy2;
import java.time.*;
/**
* @author Y.W.
* @date 2018年5月14日 上午12:43:06
* @Description TODO 判断是否为闰年
*/
public class P395_15_10 {
public static void main(String[] args) {
// 用指定的年获取一个year
Year year1 = Year.of(2012);
// 从Year获取YearMonth
YearMonth yearMonth = year1.atMonth(2);
// YearMonth指定日得到LocalDate
LocalDate localDate2 = yearMonth.atDay(29);
System.out.println("时间:" + localDate2);
// 判断是否为闰年
System.out.println("是否为闰年:" + localDate2.isLeapYear());
// 自动处理闰年的2月日期
// 创建一个MonthDay
MonthDay monthDay = MonthDay.of(2, 29);
LocalDate leapYear = monthDay.atYear(2012);
System.out.println("闰年:" + leapYear);
// 同一个MonthDay关联到另一个年份上
LocalDate nonLeapYear = monthDay.atYear(2014);
System.out.println("非闰年:" + nonLeapYear);
}
}
运行结果:
Java.time 的 API 提供的相关方法:
方法 | 说明 |
---|---|
of | 静态工厂方法,如Year.of(2012) |
parse | 静态工厂方法,关注解析 |
get | 获取某些东西的值 |
is | 检查某些东西是否为true |
with | 不可变的setter等价物 |
plus | 加一些量到某个对象 |
minus | 从某个对象减去一些量 |
to | 转换到另一个类型 |
at | 把这个对象与另一个对象组合起来 |
思考
时间类的演变很大呀。
记于2018-5-14 01:08:06
By Yvan