方法 | 说明 |
---|---|
byte byteValue(); | 返回 byte 类型的值 |
double doubleValue(); | 返回 double 类型的值 |
float floatValue(); | 返回 float 类型的值 |
int intValue(); | 返回 int 类型的值 |
long longValue(); | 返回 long 类型的值 |
short shortValue(); | 返回 short 类型的值 |
Number num = new Double(12.5); System.out.println("返回 double 类型的值:" + num.doubleValue()); System.out.println("返回 int 类型的值:" + num.intValue()); System.out.println("返回 float 类型的值:" + num.floatValue());
返回 double 类型的值:12.5 返回 int 类型的值:12 返回 float 类型的值:12.5
本文链接:http://task.lmcjl.com/news/10380.html