- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 持续时间
- java.time - Instant
- java.time - LocalDate
- java.time - LocalDateTime
- java.time - LocalTime
- java.time - MonthDay
- java.time - OffsetDateTime
- java.time - OffsetTime
- java.time - Period
- java.time - Year
- java.time - YearMonth
- java.time - ZonedDateTime
- java.time - ZoneId
- java.time - ZoneOffset
- java.time 包枚举
- java.time - Month
- java.time 有用资源
- java.time - 讨论
java.time.YearMonth.with() 方法示例
描述
java.time.YearMonth.with(TemporalAdjuster adjuster) 方法返回此年份的一个调整后的副本。
声明
以下是 java.time.YearMonth.with(TemporalAdjuster adjuster) 方法的声明。
public YearMonth with(TemporalAdjuster adjuster)
参数
adjuster - 要使用的调整程序,不能为空。
返回值
a YearMonth 基于此月份,已进行调整,不能为空。
异常
DateTimeException - 如果无法进行调整。
ArithmeticException - 如果发生数字溢出。
示例
以下示例演示了 java.time.YearMonth.with(TemporalAdjuster adjuster) 方法的用法。
package com.tutorialspoint; import java.time.YearMonth; public class YearMonthDemo { public static void main(String[] args) { YearMonth date = YearMonth.parse("2017-12"); YearMonth result = date.with(YearMonth.of(2010,12)); System.out.println(result); } }
让我们编译并运行以上程序,这将产生以下结果 -
2010-12
广告