Calendarbefore和after错误
Posted 玩葫芦的卷心菜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Calendarbefore和after错误相关的知识,希望对你有一定的参考价值。
在做一个需求的时候,需要获取日期区间里的每个年月日,于是使用了Calendar工具类
结果发现死循环
SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd");
Calendar calendar = Calendar.getInstance();
Date start = sf.parse("2022-01-01");
Date end = sf.parse("2022-01-10");
calendar.setTime(start);
while(!calendar.after(end))
System.out.println(sf.format(calendar.getTime()));
System.out.println(calendar.after(end));
calendar.add(Calendar.DATE, 1);
然后试了几个样例发现都是false,于是我点进了after的源码
public boolean after(Object when)
return when instanceof Calendar
&& compareTo((Calendar)when) > 0;
public boolean before(Object when)
return when instanceof Calendar
&& compareTo((Calendar)when) < 0;
因为我调用的是Calendar自带的after,传入的参数是一个Date
Date instanof Calendar = false
所以无论如何!false=true 会一直死循环
before同样如此
纠正
使用Date的after才是比的时间
while(!calendar.getTime().after(end))
System.out.println(sf.format(calendar.getTime()));
System.out.println(calendar.after(end));
calendar.add(Calendar.DATE, 1);
public boolean after(Date when)
return getMillisOf(this) > getMillisOf(when);
public boolean before(Date when)
return getMillisOf(this) < getMillisOf(when);
解决问题
以上是关于Calendarbefore和after错误的主要内容,如果未能解决你的问题,请参考以下文章
请问After Effects错误:无法转换Unicode字符。是啥问题?怎么解决?