最佳答案
Is there any difference between these:
zonedDateTime.truncatedTo(ChronoUnit.DAYS);
zonedDateTime.toLocalDate().atStartOfDay(zonedDateTime.getZone());
Any reason to prefer one against the other?
Thanks