Java中的级别 hashCode() 方法及示例
Java.util.logging.Level的hashCode()方法用于获取关卡对象的 hashcode。如果对象没有改变,哈希码总是相同的。 Hashcode 是 JVM 在创建对象时生成的唯一代码。我们可以使用哈希码对哈希表、哈希图等哈希相关算法执行一些操作。我们可以使用该唯一代码搜索对象。
句法:
public int hashCode()
参数:此方法不接受任何内容。
Return :此方法返回一个整数值,表示该级别的 hashCode 值。
下面的程序说明了 hashCode() 方法:
方案一:
// Java program to illustrate hashCode() method
import java.util.logging.Level;
import java.util.logging.Logger;
public class GFG {
public static void main(String[] args)
{
// Create a Logger
Logger logger
= Logger.getLogger(
Object.class.getName())
.getParent();
// Get level of logger
Level level
= logger.getLevel();
// get hashCode
int val = level.hashCode();
// print result
System.out.println("HashCode = "
+ val);
}
}
输出:
HashCode = 800
方案二:
// Java program to illustrate hashCode() method
import java.util.logging.Level;
public class GFG {
public static void main(String[] args)
{
// Get level of logger
Level level
= Level.parse("SEVERE");
// get hash Code
int value = level.hashCode();
// print result
System.out.println("Hash Code = "
+ value);
}
}
输出:
Hash Code = 1000
参考资料: https: Java/util/logging/Level.html#hashCode()