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



说明

java.time.YearMonth.withMonth(int month) 方法返回一个 copy,其中该 YearMonth 的月份已更改。

声明

以下是 java.time.YearMonth.withMonth(int month) 方法的声明。

public YearMonth withMonth(int month)

参数

month − 在返回的年中设置月份,从 1(1 月)到 12(12 月)。

返回值

基于此 YearMonth 的 YearMonth,已进行调整,非 null。

异常

DateTimeException − 如果月份的值无效。

示例

以下示例演示了 java.time.YearMonth.withMonth(int month) 方法的用法。

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.withMonth(8);
      System.out.println(result);  
   }
}

我们编译并运行上述程序,它将产生以下结果 −

2017-08
广告