首页javadateJava Data Type - 如何将Period添加到LocalDate

Java Data Type - 如何将Period添加到LocalDate

我们想知道如何将Period添加到LocalDate。
import java.time.LocalDate;
import java.time.Period;

public class Main {
  public static void main(String[] args) {
    Period twoMonthsAndFiveDays = Period.ofMonths(2).plusDays(5);
    LocalDate sixthOfJanuary = LocalDate.of(2014, 1, 6);

    LocalDate eleventhOfMarch = sixthOfJanuary.plus(twoMonthsAndFiveDays);

    System.out.println(eleventhOfMarch);
  }
}