Example usage for java.util Vector hashCode

List of usage examples for java.util Vector hashCode

Introduction

In this page you can find the example usage for java.util Vector hashCode.

Prototype

public synchronized int hashCode() 

Source Link

Document

Returns the hash code value for this Vector.

Usage

From source file:Main.java

public static void main(String[] args) {

    Vector vec = new Vector(4);

    vec.add(4);//w w w  .ja v  a2  s  .  c  om
    vec.add(3);
    vec.add(2);
    vec.add(1);

    // let us get the hashcode of the vector
    System.out.println("Hash code :" + vec.hashCode());
}