Java Number类

阅读数:44 评论数:0

跳转到新版页面

分类

python/Java

正文

一、概述

Number是一个抽象类,也是Double, Float, Byte, Short, Integer, Long的父类。

二、常用方法

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());



相关推荐

HystrixRollingNumber利用了LongAdder,也借鉴了LongAdder分段的思想,即分段统计,比如说要统计qps,即1秒内的请求总数,可以将1s的时间分成10段,每段100