📌  相关文章
📜  Java中的 LocalDate adjustInto() 方法

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

Java中的 LocalDate adjustInto() 方法

Java中LocalDate类的adjustInto()方法用于调整指定的时态对象与该对象具有相同的日期。

语法

public Temporal adjustInto(Temporal temporal)

参数:此方法接受单个参数temporal ,它是要调整的目标对象,而不是具体为 null。

返回值:返回调整后的对象,不为空。

异常:该函数抛出两个异常,如下所述:

  1. DateTimeException :如果程序无法进行调整,则抛出此异常。
  2. ArithmeticException :如果存在数字溢出,程序将抛出此异常。

下面的程序说明了Java中 LocalDate 的 adjustInto() 方法:

程序 1

// Program to illustrate the adjustInto() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
  
        ZonedDateTime date = ZonedDateTime.now();
  
        // prints the date
        System.out.println(date);
  
        // Parses the date
        LocalDate date1 = LocalDate.parse("2015-01-31");
  
        // Uses the function to adjust the date
        date = (ZonedDateTime)date1.adjustInto(date);
  
        // Prints the adjusted date
        System.out.println(date);
    }
}
输出:
2018-11-28T05:36:08.205Z[Etc/UTC]
2015-01-31T05:36:08.205Z[Etc/UTC]

程序2 :说明异常。下面的程序抛出异常,因为二月是 28 天而不是 31 天。

// Program to illustrate the adjustInto() method
// Exception Program
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        try {
            ZonedDateTime date = ZonedDateTime.now();
  
            // prints the date
            System.out.println(date);
  
            // Parses the date
            LocalDate date1 = LocalDate.parse("2015-02-31");
  
            // Uses the function to adjust the date
            date = (ZonedDateTime)date1.adjustInto(date);
  
            // Prints the adjusted date
            System.out.println(date);
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
输出:
2018-11-28T05:36:11.014Z[Etc/UTC]
java.time.format.DateTimeParseException: 
Text '2015-02-31' could not be parsed: Invalid date 'FEBRUARY 31'

参考:https: Java Java.time.temporal.Temporal)