91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java常用工具類 數字工具類

發布時間:2020-10-14 08:23:02 來源:腳本之家 閱讀:219 作者:遠方© 欄目:編程語言

本文實例為大家分享了java常用工具類,數字工具類的具體代碼,供大家參考,具體內容如下

package com.jarvis.base.util;

import java.math.BigDecimal;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.util.Random;


public class NumericHelper {

 /**
 * 描述:通過一個整數i獲取你所要的哪幾個(從0開始) i為 多個2的n次方之和,如i=7,那么根據原值是2的n次方之各,你的原值必定是1,2,4 。
 * 
 * @param i
 *   數值
 * @return
 */
 public static int[] getWhich(long i) {
 int exp = Math.getExponent(i);
 if (i == (1 << (exp + 1)) - 1) {
 exp = exp + 1;
 }
 int[] num = new int[exp];
 int x = exp - 1;
 for (int n = 0; (1 << n) < i + 1; n++) {
 if ((1 << (n + 1)) > i && (1 << n) < (i + 1)) {
 num[x] = n;
 i -= 1 << n;
 n = 0;
 x--;
 }
 }
 return num;
 }

 /**
 * 描述:非四舍五入取整處理
 * 
 * @param v
 *   需要四舍五入的數字
 * @return
 */
 public static int roundDown(double v) {
 BigDecimal b = new BigDecimal(Double.toString(v));
 BigDecimal one = new BigDecimal("1");
 return b.divide(one, 0, BigDecimal.ROUND_DOWN).intValue();
 }

 /**
 * 描述:四舍五入取整處理
 * 
 * @param v
 *   需要四舍五入的數字
 * @return
 */
 public static int roundUp(double v) {
 BigDecimal b = new BigDecimal(Double.toString(v));
 BigDecimal one = new BigDecimal("1");
 return b.divide(one, 0, BigDecimal.ROUND_UP).intValue();
 }

 /**
 * 描述:提供精確的小數位四舍五入處理。
 * 
 * @param v
 *   需要四舍五入的數字
 * @param scale
 *   小數點后保留幾位
 * @return 四舍五入后的結果
 */
 public static double round(double v, int scale) {
 if (scale < 0) {
 throw new IllegalArgumentException("The scale must be a positive integer or zero");
 }

 BigDecimal b = new BigDecimal(Double.toString(v));
 BigDecimal one = new BigDecimal("1");
 return b.divide(one, scale, BigDecimal.ROUND_HALF_UP).doubleValue();
 }

 /**
 * 描述:四舍五入保留兩位小數
 * 
 * @param num
 *   數字
 * @return 保留兩位小數的數字字串
 */
 public static String format(double num) {
 return format(num, "0.00");
 }

 /**
 * 描述:四舍五入數字保留小數位
 * 
 * @param num
 *   數字
 * @param digits
 *   小數位
 * @return
 */
 public static String format(double num, int digits) {
 String pattern = "0";
 if (digits > 0) {
 pattern += "." + createStr("0", digits, "");
 }
 return format(num, pattern);
 }

 /**
 * 描述:生成字符串
 * 
 * @param arg0
 *   字符串元素
 * @param arg1
 *   生成個數
 * @param arg2
 *   間隔符號
 * @return
 */
 private static String createStr(String arg0, int arg1, String arg2) {
 if (arg0 == null) {
 return "";
 } else {
 StringBuffer sb = new StringBuffer();
 for (int i = 0; i < arg1; i++) {
 if (arg2 == null)
  arg2 = "";
 sb.append(arg0).append(arg2);
 }
 if (sb.length() > 0) {
 sb.delete(sb.lastIndexOf(arg2), sb.length());
 }

 return sb.toString();
 }
 }

 /**
 * 描述:數字格式化
 * 
 * @param num
 *   數字
 * @param pattern
 *   格式
 * @return
 */
 public static String format(double num, String pattern) {
 NumberFormat fmt = null;
 if (pattern != null && pattern.length() > 0) {
 fmt = new DecimalFormat(pattern);
 } else {
 fmt = new DecimalFormat();
 }
 return fmt.format(num);
 }

 /**
 * 求浮點數的權重
 * 
 * @param number
 * @return
 */
 public static double weight(double number) {
 if (number == 0) {
 return 1;
 }

 double e = Math.log10(Math.abs(number));
 int n = Double.valueOf(Math.floor(e)).intValue();
 double weight = 1;
 if (n > 0) {
 for (int i = 0; i < n; i++) {
 weight *= 10;
 }
 } else {
 for (int i = 0; i > n; i--) {
 weight /= 10;
 }
 }
 return weight;
 }

 /**
 * 獲得權重的單位
 * 
 * @param scale
 * @return
 */
 public static String unit(double scale) {
 if (scale == 1 || scale == 0) {
 return "";// 不設置單位倍率單位,使用基準單位
 }
 String[] units = new String[] { "十", "百", "千", "萬", "十萬", "百萬", "千萬", "億", "十億", "百億", "千億", "兆" };
 String[] units2 = new String[] { "十分", "百分", "千分", "萬分", "十萬分", "百萬分", "千萬分" };
 double e = Math.log10(scale);
 int position = Double.valueOf(Math.ceil(e)).intValue();
 if (position >= 1 && position <= units.length) {
 return units[position - 1];
 } else if (position <= -1 && -position <= units2.length) {
 return units2[-position - 1];
 } else {
 return "無量";
 }
 }

 /**
 * 獲得浮點數的縮放比例
 * 
 * @param num
 * @return
 */
 public static double scale(double num) {
 double absValue = Math.abs(num);
 // 無需縮放
 if (absValue < 10000 && absValue >= 1) {
 return 1;
 }
 // 無需縮放
 else if (absValue < 1 && absValue > 0.0001) {
 return 1;
 } else {
 return weight(num) / 10;
 }
 }

 /**
 * 獲得縮放后并且格式化的浮點數
 * 
 * @param num
 * @param scale
 * @return
 */
 public static double scaleNumber(double num, double scale) {
 DecimalFormat df = null;
 if (scale == 1) {
 df = new DecimalFormat("#.0000");
 } else {
 df = new DecimalFormat("#.00");
 }
 double scaledNum = num / scale;
 return Double.valueOf(df.format(scaledNum));
 }

 /**
 * 產生n位隨機數 TODO:性能不要,有待優化
 */
 public static String ramdomNumber(int n) {
 if (n <= 0) {
 throw new IllegalArgumentException("n must be positive !");
 }
 Random random = new Random();
 StringBuilder result = new StringBuilder();
 for (int i = 0; i < n; i++) {
 result.append(random.nextInt(10));
 }
 return result.toString();
 }

 /**
 * 縮放1W倍
 */
 public static double changeTo(double number) {
 boolean flag = false;
 if (number < 0) {
 flag = true;
 }
 double value = Math.abs(number);
 value = value / 10000.0;
 if (flag) {
 value = Double.parseDouble("-" + value);
 }
 return value;
 }

 /**
 * 
 * 描述:縮放比例
 * 
 * @param number
 * @param scale
 * @param points
 * @return
 */
 public static String scaleNumberToStr(double number, double scale, int points) {
 boolean flag = (number < 0);
 number = Math.abs(number);
 String result = "";
 DecimalFormat nbf3 = (DecimalFormat) NumberFormat.getInstance();// 默認格式
 nbf3.setGroupingUsed(false);
 nbf3.setMinimumFractionDigits(points);
 nbf3.setMaximumFractionDigits(points);
 double scaledNum = number / scale;
 result = nbf3.format(scaledNum);
 if (flag) {
 result = "-" + result;
 }
 return result;
 }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阳高县| 木里| 岳普湖县| 额尔古纳市| 深泽县| 枣强县| 河西区| 洪江市| 梅河口市| 青铜峡市| 瓮安县| 泗阳县| 涟源市| 台南县| 太保市| 梅河口市| 万年县| 雅安市| 汾西县| 双鸭山市| 资兴市| 张家界市| 惠州市| 同仁县| 海晏县| 广元市| 双流县| 秭归县| 额济纳旗| 临漳县| 五家渠市| 老河口市| 汾西县| 越西县| 扎鲁特旗| 张家界市| 高碑店市| 北流市| 澄城县| 盐城市| 湘潭市|