Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
/**
* Returns a hash code value for the object.
*
* @param obj
* the obj
* @return the int
*/
public static int hashCode(final Object obj) {
return obj != null ? obj.hashCode() : 0;
}
}