如何计算“周五之前”使用 Java 还是 Groovy?
我需要能够用 Java 或 Groovy 计算今天的“星期五之前”。
例如,如果今天是 2 月 21 日星期一,则“之前的星期五”将为 2 月 18 日星期五。
如果今天是 2 月 1 日星期二,则“之前的星期五”将为 1 月 28 日星期五。
最好的方法是什么要这样做吗?我可以最有效地利用哪些现有课程?
I need to be able to calculate the "Friday before" today in Java or Groovy.
For example, if today is Monday, February 21, the "Friday before" would be Friday, February 18.
And if today was Tuesday, February 1, the "Friday before" would be Friday, January 28.
What would be the best way to do this? What existing classes can I most effectively leverage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用循环:
或者
You can use a loop:
Or
我会创建一个方法来给出自给定日期以来已经过去的天数。
I would make a method that gave me the number of days that have passed since the given day.