In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly shows you "how Java8 calculates the date in a week". The content is simple and clear. I hope it can help you solve your doubts. Let me lead you to study and learn this article "how Java8 calculates the date in a week".
How does Java 8 calculate the date a week later
This example calculates the date a week later. LocalDate dates do not contain time information, and its plus () method is used to add days, weeks, and months, which are declared by the ChronoUnit class. Since LocalDate is also an immutable type, you must assign a value with a variable when it is returned.
Package com.shxt.demo02; import java.time.LocalDate; import java.time.temporal.ChronoUnit; public class Demo08 {public static void main (String [] args) {LocalDate today = LocalDate.now (); System.out.println ("Today's date is:" + today); LocalDate nextWeek = today.plus (1, ChronoUnit.WEEKS); System.out.println ("date in a week:" + nextWeek);}}
You can see that the new date is seven days from the same day, that is, one week. You can add a month, a year, an hour, a minute or even a century in the same way. For more options, check out the ChronoUnit class in Java 8 API
The above is all the contents of the article "how Java8 calculates the date in a week". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.