当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.time.YearMonth.withMonth()用法及代码示例



描述

这个java.time.YearMonth.withMonth(int month)方法返回此 YearMonth 的副本,其中 month-of-year 已更改。

声明

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

public YearMonth withMonth(int month)

参数

month− 在返回的 year-month 中设置的 month-of-year,从 1(一月)到 12(十二月)。

返回值

基于此进行调整的 YearMonth,不为空。

异常

DateTimeException− 如果 month-of-year 值无效。

示例

下面的例子展示了 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

相关用法


注:本文由纯净天空筛选整理自 java.time.YearMonth.withMonth() Method Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。