Giriş
Açıklaması şöyle
Açıklaması şöyle
Stores offset in hours and minutes from Greenwich. Stores seconds in range -18:00 ile +18:00ZoneId sınıfından kalıtır.
constructor
Örnek
getLong() sonucundaki offset değerini saat ve dakikaya çevirmek için şöyle yaparız
ZonedDateTime zdt = ...ZoneOffset zoneOffset = zdt.getOffset();long offsetLong = zoneOffset.getLong(ChronoField.OFFSET_SECONDS);Duration duration = Duration.ofSeconds(offsetLong);long hours = duration.toHours();long minutes = duration.toMinutes() % 60;
Hiç yorum yok:
Yorum Gönder