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()
相关用法
- Java DoubleAccumulator intValue()用法及代码示例
- Java AtomicInteger intValue()用法及代码示例
- Java LongAccumulator intValue()用法及代码示例
- Java Float intValue()用法及代码示例
- Java Number.intValue()用法及代码示例
- Java Byte intValue()用法及代码示例
- Java LongAdder intValue()用法及代码示例
- Java AtomicLong intValue()用法及代码示例
- Java Double intValue()用法及代码示例
- Java DoubleAdder intValue()用法及代码示例
- Java Level getResourceBundleName()用法及代码示例
- Java Level toString()用法及代码示例
- Java Level hashCode()用法及代码示例
- Java Level equals()用法及代码示例
- Java Level getLocalizedName()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Level intValue() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。