Here you can find the source of hashCode(Collection
Parameter | Description |
---|---|
collection | a parameter |
public static <E> int hashCode(Collection<E> collection)
//package com.java2s; /******************************************************************************* * Copyright 2011 Danny Kunz//from w w w. ja va 2s .com * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ import java.util.Collection; import java.util.Iterator; public class Main { /** * Calculates the hash code for a given collection including the order of elements * * @param collection * @return */ public static <E> int hashCode(Collection<E> collection) { final int prime = 31; int result = 1; if (collection != null) { Iterator<E> iterator = collection.iterator(); while (iterator.hasNext()) { E next = iterator.next(); result = prime * result + (next != null ? next.hashCode() : 0); } } return result; } }