当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。