Java xxxValue() 方法

Java 教程 · 2019-02-08 09:59:01

xxxValue() 方法用于将 Number 对象转换为 xxx 数据类型的值并返回。

相关的方法有:

类型 方法及描述
byte

byteValue() :

以 byte 形式返回指定的数值。

abstract double

doubleValue() :

以 double 形式返回指定的数值。

abstract float

floatValue() :

以 float 形式返回指定的数值。

abstract int

intValue() :

以 int 形式返回指定的数值。

abstract long

longValue() :

以 long 形式返回指定的数值。

short

shortValue() :

以 short 形式返回指定的数值。

参数

以上各函数不接受任何的参数。

返回值

转换为 xxx 类型后该对象表示的数值。

实例

Test.java 文件

public class Test{ public static void main(String args[]){ Integer x = 5; // 返回 byte 原生数据类型 System.out.println( x.byteValue() ); // 返回 double 原生数据类型 System.out.println(x.doubleValue()); // 返回 long 原生数据类型 System.out.println( x.longValue() ); } }

编译以上程序,输出结果为:

5
5.0
5

点击查看所有 Java 教程 文章: https://www.codercto.com/courses/l/12.html

查看所有标签

Computer Age Statistical Inference

Computer Age Statistical Inference

Bradley Efron、Trevor Hastie / Cambridge University Press / 2016-7-21 / USD 74.99

The twenty-first century has seen a breathtaking expansion of statistical methodology, both in scope and in influence. 'Big data', 'data science', and 'machine learning' have become familiar terms in ......一起来看看 《Computer Age Statistical Inference》 这本书的介绍吧!

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

html转js在线工具
html转js在线工具

html转js在线工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具