當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Level hashCode()用法及代碼示例


java.util.logging.Level的hashCode()方法用於獲取級別對象的哈希碼。如果對象不變,則哈希碼始終相同。哈希碼是由JVM在對象創建時生成的唯一代碼。我們可以使用哈希碼對與哈希相關的算法(例如哈希表,哈希圖等)執行一些操作。我們可以使用該唯一代碼搜索對象。

用法:

public int hashCode()

參數:此方法不接受任何內容。


返回:此方法返回一個整數值,該值表示此級別的hashCode值。

以下示例程序旨在說明hashCode()方法:
示例1:

// 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

示例2:

// 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://docs.oracle.com/javase/10/docs/api/java/util/logging/Level.html#hashCode()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Level hashCode() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。