Java中的级别 intValue() 方法和示例
Java.util.logging.Level的intValue()方法用于获取此级别对象的整数值。每个级别都有一个与之关联的整数值。此整数值可用于 Level 对象之间的有效排序比较。如果我们想在日志记录中使用级别对象的 int 值进行比较,此方法很有帮助。
句法:
public int intValue()
参数:此方法不接受任何内容。
返回:此方法返回此级别对象的整数值。
下面的程序说明了 intValue() 方法:
方案一:
// 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
方案二:
// 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: Java/util/logging/Level.html#intValue()