java.time.YearMonth.withYear() 方法示例



描述

java.time.YearMonth.withYear(int 年份) 方法返回由此年月的年份更改后的副本。

声明

以下是 java.time.YearMonth.withYear(int 年份) 方法的声明。

public YearMonth withYear(int year)

参数

年份 − 在返回的年月中要设置的年份,从 MIN_YEAR 到 MAX_YEAR。

返回值

基于此,进行了调整的 YearMonth,非空。

异常

DateTimeException − 如果年份值无效。

示例

以下示例演示了如何使用 java.time.YearMonth.withYear(int 年份) 方法。

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
广告