Java番石榴 |带有示例的 Longs.hashCode() 方法
Longs.hashCode()是 Guava 库中 Longs 类的一个方法,用于返回 long 值的哈希码。 hashCode 是编译器为对象计算的唯一整数值。如果对象值不变,则保持不变。
句法:
public static int hashCode(long value)
参数:此方法采用一个强制参数值,该参数值是一个长值,将为其找到 hashCode。
返回值:此方法返回一个整数值,它是指定值的哈希码。
下面的程序说明了上述方法的使用:
示例 1:
// Java code to show implementation of
// Guava's Longs.hashCode() method
import com.google.common.primitives.Longs;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Using Longs.hashCode() method to
// get the hash code for value
System.out.println("HashCode value of 15: "
+ Longs.hashCode(15));
}
}
输出:
HashCode value of 15: 15
示例 2:
// Java code to show implementation of
// Guava's Longs.hashCode() method
import com.google.common.primitives.Longs;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Using Longs.hashCode() method to
// get the hash code for value
System.out.println("HashCode value of 10: "
+ Longs.hashCode(10));
}
}
输出:
HashCode value of 10: 10
参考:
https://google.github.io/guava/releases/21.0/api/docs/com/google/common/primitives/Longs.html#hashCode-long-