📜  Java中的向量hashCode()方法

📅  最后修改于: 2022-05-13 01:54:53.827000             🧑  作者: Mango

Java中的向量hashCode()方法

Java中的Java .util.vector.hashCode()方法用于获取该向量的哈希码值。

句法:

Vector.hashCode()

参数:该方法不带任何参数。

返回值:该方法返回该Vector的哈希码值,为Integer类型。

下面的程序说明了Java.util.Vector.hashCode() 方法:

程序 1:带有字符串元素的向量。

// Java code to illustrate hashCode()
import java.util.*;
  
public class VectorDemo {
    public static void main(String args[])
    {
        // Creating an empty Vector
        Vector vec_tor = new Vector();
  
        // Use add() method to add elements into the Vector
        vec_tor.add("Welcome");
        vec_tor.add("To");
        vec_tor.add("Geeks");
        vec_tor.add("4");
        vec_tor.add("Geeks");
  
        // Displaying the Vector
        System.out.println("Vector: " + vec_tor);
  
        // Displaying the hashCode value of Vector
        System.out.println("The hashCode value is: "
                           + vec_tor.hashCode());
    }
}
输出:
Vector: [Welcome, To, Geeks, 4, Geeks]
The hashCode value is: -878886256

程序 2:具有整数元素的向量。

// Java code to illustrate hashCode()
import java.util.*;
  
public class VectorDemo {
    public static void main(String args[])
    {
        // Creating an empty Vector
        Vector vec_tor = new Vector();
  
        // Use add() method to add elements into the Vector
        vec_tor.add(10);
        vec_tor.add(20);
        vec_tor.add(30);
        vec_tor.add(40);
        vec_tor.add(50);
  
        // Displaying the Vector
        System.out.println("Vector: " + vec_tor);
  
        // Displaying the hashCode value of Vector
        System.out.println("The hashCode value is: "
                           + vec_tor.hashCode());
    }
}
输出:
Vector: [10, 20, 30, 40, 50]
The hashCode value is: 38490301