Java xxxValue()方法
描述:
该方法是Number对象调用方法返回的原始数据类型的值转换。
语法:
这是每个原始数据类型一个单独的方法:
byte byteValue() short shortValue() int intValue() long longValue() float floatValue() double doubleValue()
参数:
下面是参数的详细信息:
-
NA
返回值:
-
这些方法返回给定的签名中的原始数据类型。
例如:
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