Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

public class Main {
    /**
     * Hash code of object.
     *
     * @param object object
     * @return hash code or 0 if object is null
     */
    public static int objectHashCode(Object object) {
        return object == null ? 0 : object.hashCode();
    }
}