當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Vector 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<String> vec_tor = new Vector<String>(); 
  
        // 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<Integer> vec_tor = new Vector<Integer>(); 
  
        // 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


相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 Vector hashCode() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。