dateTime Flashcards
What package do you import for date and time?
import java.time.*;
When do you use LocalDate?
Print the current local Date
Your birthday -> just no time
LocalDate.now();
LocalTime?
Contains just time and no date and no timezone.
Hours, minutes, seconds and nanoseconds
LocalTime.now();
LocalDateTime
Contains date and time but no timezone
date and time
LocalDateTime.now();
Can you use LocalDate and define the method signature?
public static LocalDate of(int year, int month, int day)
public static LocalDate of(int year, Month month, int day)
Can you use LocalTime and define the method signature?
LocalTime time1 = LocalTime.of(6,16);
- hour and minute
- hour, minute and second
- hour, minute, second and nanosecond
Can you use LocalDateTime and define the method signature?
LocalDateTime time = LocalDateTime.of(date, month,day, hour, month, second, nanos);
Can you do this?
~~~
LocalDate a = new LocalDate();
~~~
NO because the only way you can do is by
LocalDate a = LocalDate.of(2022, 1,3);
It’s static method.
Can you do the following:
LocalDate.of(2022, Month.JANUARY, 40);
Throws DateTimeException
Are Date and time classes mutable or immutable?
Immutable
Given the following:
Can you add weeks, days, months and years?
Can you subtract them as well?
~~~
LocalDate date = LocalDate.of(2022, Month.JANUARY, 20);
````
date.plusDays(2);
date.plusWeeks(1);
date.plusMonths(1);
date.plusYears(1);
date.minusDays(2);
What does this print?
LocalDate date = LocalDate.of(2020, Month.JANUARY,20); date.plusDays(10); System.out.println(date);
It will pring 20th January 2020 because date and time class are immutable
What is the output of the following?
~~~
LocalDate date = LocalDate.of(2020, Month.JANUARY, 20);
date = date.plusMinutes(1);
~~~
Does not compile
Can you call the following on LocalDate?
plusYears/minusYears
plusMonths
plusWeeks
plusDays
plusHours
plusMinutes
plusSeconds
plusNanos
plusYears/minusYears - yes
plusMonths - yes
plusWeeks - yes
plusDays - yes
plusHours - no
plusMinutes -no
plusSeconds - no
plusNanos -no
Can you call the following on LocalTime?
plusYears/minusYears
plusMonths
plusWeeks
plusDays
plusHours
plusMinutes
plusSeconds
plusNanos
plusYears/minusYears - no
plusMonths - no
plusWeeks - no
plusDays - no
plusHours - yes
plusMinutes - yes
plusSeconds - yes
plusNanos - yes
Can you LocalDateTime?
plusYears/minusYears
plusMonths
plusWeeks
plusDays
plusHours
plusMinutes
plusSeconds
plusNanos
All yes
plusYears/minusYears
plusMonths
plusWeeks
plusDays
plusHours
plusMinutes
plusSeconds
plusNanos
Can Period be chainable?
No
Create a date format?
LocalDate date = LocalDate.of(2022, Month.January, 1);
DateTimeFormatter a = DateTimeFormatter.ofLocalizedDate(FormatStyle.SHORT);
System.out.println(a.format(date));
What is the point of using the Period class?
Period class represents a number of days, months, years to add or subtract from a Local Date or LocalDateTime.
LocalDate
Calling that on FormatStyle.SHORT
ofLocalizedDate
Shows the whole object
How to format based on patterns?
DateFormatter f = DateFormatter.ofPattern("MMM dd", yyyy);
Make a LocalDateTime and make a dateTimeFormatter
LocalDateTime date = LocalDateTime.of(2023, 1, 1, 2,3,3);
DateTimeFormatter a = DateTimeFormatter.ofPattern("yyyy, MMMM, m, dd"); System.out.println(a.format(date));
Of the DataFormatter patterns,
What does the following mean?
M
MMMM
MM
MMM
M means month
M =1;
MMMM = January
MM = 01;
MMM = Jan
What does dd represent, hh, yyyyy, mm?
d represents day,
yyyy represents year
hh represents hour
: if you want to output the colon
mm = minute
LocalDate date = LocalDate.of(2018, Month.APRIL, 40);
System.out.println(date.getYear() + “ “ + date.getMonth() + “ “
+ date.getDayOfMonth());
exception is thrown
mistake so know this.
LocalDateTime d = LocalDateTime.of(2015, 5, 10, 11, 22, 33);
Period p = Period.ofDays(1).ofYears(2);
d = d.minus(p);
DateTimeFormatter f = DateTimeFormatter.ofLocalizedDateTime(FormatStyle
.SHORT);
System.out.println(f.format(d));
I will be
Year = 2015 -2
The reason is period wont allow chaining so last gets processed.
Mistake.
Can you do this?
Period a = Period.ofDays(-14);
You can add both negative and positives.
What happens when you try to use time with LocalDate
DNC