Java Number xxxValue() 方法
描述
该方法将调用方法的Number对象的值转换为从该方法返回的原始数据类型。
语法
每种原始数据类型都有一个单独的方法 –
byte byteValue()
short shortValue()
int intValue()
long longValue()
float floatValue()
double doubleValue()
参数
下面是参数的详细信息:
- 所有这些都是默认方法,不接受任何参数。
返回值
- 此方法返回在签名中给定的原始数据类型。
示例
public class Test {
public static void main(String args[]) {
Integer x = 5;
// Returns byte primitive data type
System.out.println( x.byteValue() );
// Returns double primitive data type
System.out.println(x.doubleValue());
// Returns long primitive data type
System.out.println( x.longValue() );
}
}
这将产生如下结果 −
输出
5
5.0
5