Home » Java Vector hashCode() Method with Examples

Java Vector hashCode() Method with Examples

by Online Tutorials Library

Java Vector hashCode() Method

The hashCode() method of Java Vector class is used to get the hashcode value for the vector which is in use.

Syntax:

Following is the declaration of hashCode() method:

Parameter:

This method does not accept any parameter.

Returns:

The hashCode() method returns the hash code value for this vector. It returns the hashcode in integer form.

Exceptions:

NA

Compatibility Version:

Java 1.2 and above

Example 1:

Test it Now

Output:

Element in vector = [1, -2, 3, -4, 5]  HashCode vector = 29495854  

Example 2:

Test it Now

Output:

Color elements in vector: [White, Green, Black, Pink]  HashCode: 1877005970  

Example 3:

Test it Now

Output:

95  2982  92503  

Next TopicJava Vector

You may also like