在Java中,可以使用hashCode()
方法来获取对象的哈希值。hashCode()
方法是Object类中的一个方法,所有的Java对象都继承自Object类,因此都可以调用该方法来获取哈希值。
示例代码如下:
public class HashCodeExample {
public static void main(String[] args) {
String str = "Hello World";
int hashCode = str.hashCode();
System.out.println("Hash code of '" + str + "' is: " + hashCode);
}
}
在上面的示例中,我们调用了String对象的hashCode()
方法来获取字符串"Hello World"的哈希值,并将其输出到控制台。可以根据具体的需求调用不同对象的hashCode()
方法来获取它们的哈希值。