java.time.Clock.getZone() Method Example



Description

The java.time.Clock.getZone() method gets the time-zone being used to create dates and times.

Declaration

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

public abstract ZoneId getZone()

Return Value

the time-zone being used to interpret instants, not null.

Example

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

package com.tutorialspoint;

import java.time.Clock;

public class ClockDemo {
   public static void main(String[] args) {
   
      Clock clock = Clock.systemDefaultZone();
      Clock clock1 = Clock.systemUTC();
      System.out.println("Clock 1 Zone: " + clock.getZone());
      System.out.println("Clock 2 Zone: " + clock1.getZone());
   }
}

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

Clock 1 Zone: Asia/Calcutta
Clock 2 Zone: Z
Advertisements