java.time.Clock.systemUTC() Method Example



Description

The java.time.Clock.systemUTC() method obtains a clock that returns the current instant using best available system clock, converting to date and time using the UTC time-zone.

Declaration

Following is the declaration for java.time.Clock.systemUTC() method.

public static Clock systemUTC()

Return Value

a clock that uses the best available system clock in the UTC zone, not null.

Example

The following example shows the usage of java.time.Clock.systemUTC() method.

package com.tutorialspoint;

import java.time.Clock;

public class ClockDemo {
   public static void main(String[] args) {
   
      Clock clock = Clock.systemUTC();  
      System.out.println("Clock : " + clock.toString());
   }
}

Let us compile and run the above program, this will produce the following result −

Clock : SystemClock[Z]
Advertisements