java.time.Clock.systemDefaultZone() Method Example



Description

The java.time.Clock.systemDefaultZone() method obtains a clock that returns the current instant using best available system clock.

Declaration

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

public static Clock systemDefaultZone()

Return Value

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

Example

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

package com.tutorialspoint;

import java.time.Clock;

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

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

Clock : SystemClock[Asia/Calcutta]
Advertisements