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()を使用して日付の時間部分を削除することもできます。