Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.Clock;

public class Main {
    public static void main(String[] args) {
        Clock clock = Clock.systemUTC();
        Clock clock1 = Clock.systemDefaultZone();
        System.out.println(clock.hashCode());
        System.out.println(clock1.hashCode());
    }
}