Calculates the hash code for this object. If two objects are equal than they must have the same hash code, otherwise undefined behavior will occur with their potential usage. @return The hash code of this object. @since 2016/02/08
()
| 108 | * @since 2016/02/08 |
| 109 | */ |
| 110 | public int hashCode() |
| 111 | { |
| 112 | return System.identityHashCode(this); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Notifies a single thread which is waiting on this monitor. |
no test coverage detected