New Classes
Explore the new Date and Time API introduced in Java 8 that offers thread-safe, immutable classes such as LocalDate and ZonedDateTime. Understand how to manipulate dates and times with simple, readable methods that improve on previous Java versions.
We'll cover the following...
We'll cover the following...
Introduction to date and time API
Java 8 introduces a new Date/Time API that is thread-safe, easier to read, and more comprehensive than the previous API. Java’s calendar implementation has not changed much since it was first introduced, and Joda-Time is widely regarded as a better replacement. Java 8’s new Date/Time API is very similar to Joda-Time. ...