Java xxxValue() 方法
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 文件
编译以上程序,输出结果为:
5 5.0 5
点击查看所有 Java 教程 文章: https://www.codercto.com/courses/l/12.html
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》 这本书的介绍吧!