Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我使用
新日期()
它返回带有当前时间时间戳的日期。如何更改附加日期的日期?
您可以使用set 方法来修改您的日期实例:
def date = new Date() date.set(second: 0, minute: 0, hourOfDay: 15)
如果您不需要任何时间,您还可以使用clearTime()删除日期的时间部分。