Java中的浮点 hashCode() 方法及示例
Float 类中的hashCode()方法方法是Java中的内置方法,它返回此 Float 对象的哈希码值。
句法:
public int hashCode()
参数:不带参数。
返回:该函数返回此对象的哈希码值。
下面是 hashCode() 方法的实现:
示例 1:
// Java code to demonstrate
// Float hashCode() Method
class GFG {
public static void main(String[] args)
{
float d = 118.698f;
// creating Float object.
Float value = new Float(d);
// hashCode() method Float class
int output = value.hashCode();
// printing the output
System.out.println("Hashcode Value of "
+ value + " : "
+ output);
}
}
输出:
Hashcode Value of 118.698 : 1122854240
示例 2:
// Java code to demonstrate
// Float hashCode() Method
class GFG {
public static void main(String[] args)
{
int i = -30;
// creating Float object.
Float value = new Float(i);
// hashCode() method Float class
int output = value.hashCode();
// printing the output
System.out.println("Hashcode Value of "
+ value + " : "
+ output);
}
}
输出:
Hashcode Value of -30.0 : -1041235968