该方法以 Number 为参数,并根据调用的方法返回一个原始类型。以下是可用方法列表 -
byte byteValue()
short shortValue()
int intValue()
long longValue()
float floatValue()
double doubleValue()
参数− 不需要参数。
Return Value− 返回值是根据调用的值函数返回的原始类型。
示例
以下是方法值的使用示例。
class Example {
static void main(String[] args) {
Integer x = 5;
// Converting the number to double primitive type
println(x.doubleValue());
// Converting the number to byte primitive type
println(x.byteValue());
// Converting the number to float primitive type
println(x.floatValue());
// Converting the number to long primitive type
println(x.longValue());
// Converting the number to short primitive type
println(x.shortValue());
// Converting the number to int primitive type
println(x.intValue());
}
}
当我们运行上述程序时,我们将得到以下结果 -
5.0 5 5.0 5 5 5
相关用法
- Groovy matches()用法及代码示例
- Groovy after()用法及代码示例
- Groovy padRight()用法及代码示例
- Groovy contains()用法及代码示例
- Groovy exp()用法及代码示例
- Groovy equals()用法及代码示例
- Groovy before()用法及代码示例
- Groovy pow()用法及代码示例
- Groovy sin()用法及代码示例
- Groovy concat()用法及代码示例
- Groovy random()用法及代码示例
- Groovy endsWith()用法及代码示例
- Groovy Maps get()用法及代码示例
- Groovy rint()用法及代码示例
注:本文由纯净天空筛选整理自 Groovy - xxxValue()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。