📜  Java中的 LocalDate withMonth() 方法及示例

📅  最后修改于: 2022-05-13 01:55:40.409000             🧑  作者: Mango

Java中的 LocalDate withMonth() 方法及示例

Java中LocalDate 类withMonth()方法返回此 LocalDate 的副本,其中更改了年份。

句法:

public LocalDate withMonth(int month)

参数:此方法接受一个强制参数月份,该参数指定要在结果中设置的月份,从 1 即 1 月到 12 即 12 月。

返回:该函数返回基于此日期的 LocalDate 和请求的月份,而不是 null。

异常:当月份值无效时,该函数会引发DateTimeException

下面的程序说明了LocalDate.withMonth()方法:

方案一:

// Program to illustrate the withMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
  
        // Parses the date
        LocalDate dt1 = LocalDate.parse("2018-12-07");
        LocalDate result = dt1.withMonth(01);
  
        // Prints the date with year
        System.out.println("The date with month is: " + result);
    }
}
输出:
The date with month is: 2018-01-07

方案二:

// Program to illustrate the withMonth() method
// Exceptions
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoField;
  
public class GfG {
    public static void main(String[] args)
    {
  
        try {
            // Parses the date
            LocalDate dt1 = LocalDate.parse("2018-12-07");
            LocalDate result = dt1.withMonth(13);
  
            // Prints the date with year
            System.out.println("The date with month is: " + result);
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
输出:
java.time.DateTimeException: Invalid value for MonthOfYear (valid values 1 - 12): 13

参考: https: Java/time/LocalDate.html#withMonth(int)