OffsetTime now() example

Description

OffsetTime now() creates the current time from the system clock in the default time-zone.

Syntax

now has the following syntax.


public static OffsetTime now()

Example

The following example shows how to use now.


import java.time.OffsetTime;
/* w  w  w  . j a v  a  2  s .  com*/
public class Main {
  public static void main(String[] args) {
    OffsetTime m = OffsetTime.now();

    System.out.println(m);

  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset