gpt4 book ai didi

java - 如何打印月份和星期几

转载 作者:行者123 更新时间:2023-12-01 19:59:20 24 4
gpt4 key购买 nike

我想打印星期几和月份之类的。我的下一个生日。 十二月星期一 十二月星期五...等到目前为止我已经讲到这一点了。

LocalDate myBirthday = LocalDate.of(2018,6,1);

         //int num =myBirthday.getYear();
// DayOfWeek day = myBirthday.getDayOfWeek();

//System.out.println("My next 10 birth days."+ myBirthday);

for(int i=0; i< 10 ; i++){
myBirthday.plusYears(i);
System.out.println( myBirthday.getYear() +" "+myBirthday.getMonth()+ " "+ myBirthday.getDayOfWeek());
}

感谢任何帮助。

最佳答案

LocalDate 类是 immutable 。当您调用 plusYears(i) 时,它会返回您未持有的 LocalDate 的新对象。

因此您只需再次分配新引用,如下所示:

myBirthday = myBirthday.plusYears(i);

我建议您引用下面的 LocalDateplusYears() 的 javadoc(查看 here )(强调我的):

public LocalDate plusYears(long yearsToAdd)

Returns a copy of this LocalDate with the specified number of years added. This instance is immutable and unaffected by this method call.

关于java - 如何打印月份和星期几,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48519571/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com