Java 8 Date and Time API with Jim Gough

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

Até que enfim. Tinha que ter minhas classes que faziam isto antes.

wanderlucio.oracle
Автор

Is it just me or it's very much similar to Joda Time?

MauMoralesMMS
Автор

Example for test (21 June) a bit incorrect, valid code is following:

final Long days;
LocalDate today = LocalDate.now();
LocalDate june21 =
if (today.isAfter(june21)) {
june21.plusYears(1);
days = ChronoUnit.DAYS.between(june21, today);
} else {
days = ChronoUnit.DAYS.between(today, june21);
}

skywish
Автор

how to calculate days between two given dates?

brendadeniese
Автор

What's up with all the background noise? Someone talking on the phone. People clanking dishes, stirring their tea, etc. Sheesh, rude.

jameswoodruff