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.
StackOverflow で同じものを検索しましたが、すべての答えは古い Java バージョンのものです。Java 8 Data and Time ユーティリティで答えが見つかりませんでした。誰でも同じことを手伝ってもらえますか?
次のように LocalDate と TemporalAdjuster の with() メソッドを使用する方法を見つけます。
LocalDate firstSundayOfNextMonth = LocalDate .now() .with(firstDayOfNextMonth()) .with(nextOrSame(DayOfWeek.SUNDAY));