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


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


java.util.logging.Level的intValue()方法用於獲取此level對象的整數值。每個級別都有一個與之關聯的整數值。此整數值可用於在Level對象之間進行有效的排序比較。如果我們要使用級別對象的int值進行記錄比較,則此方法很有用。

用法:

public int intValue()

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


返回:此方法返回此級別對象的整數值。

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

// Java program to illustrate 
// intValue() 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( 
                        String.class.getName()) 
                  .getParent(); 
  
        // Get level of logger 
        Level level 
            = logger.getLevel(); 
  
        // get intValue 
        int val = level.intValue(); 
  
        // print result 
        System.out.println("intValue = "
                           + val); 
    } 
}
輸出:
intValue = 800

示例2:

// Java program to illustrate 
// intValue() 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 int code 
        int value = level.intValue(); 
  
        // print result 
        System.out.println("intValue = "
                           + value); 
    } 
}
輸出:
intValue = 1000

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/util/logging/Level.html#intValue()



相關用法


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