java.time.YearMonth.withYear() 方法
描述
java.time.YearMonth.withYear(int year) 方法返回此 YearMonth 的副本,其中年份已更改。
声明
以下是 java.time.YearMonth.withYear(int year) 方法的声明。
public YearMonth withYear(int year)
参数
year − 要在返回的年月中设置的年份,从 MIN_YEAR 到 MAX_YEAR。
返回值
基于此的 YearMonth 进行了调整,而不是 null。
异常
DateTimeException − 如果年份值无效。
示例
下面的例子展示了 java.time.YearMonth.withYear(int year) 方法的使用。
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.withYear(2008); System.out.println(result); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
2008-12