我试图每周从头到尾迭代日期.目前,我正在编写以下代码.
def current=startDate while (current <= endDate) { log.debug "Week: ${current}" current=current+7 }
有一种更加时髦的方式吗?
解决方法
考虑到你有两个日期startDate和endDate,这应该做的工作:
(startDate..endDate).step(7) { println it }
groovier,不是吗?