-
-
Notifications
You must be signed in to change notification settings - Fork 305
/
BigDecimalUtils.java
1775 lines (1632 loc) · 49.1 KB
/
BigDecimalUtils.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package dev.utils.common;
import java.math.BigDecimal;
import java.math.BigInteger;
import dev.utils.DevFinal;
import dev.utils.JCLogUtils;
/**
* detail: 资金运算工具类
* @author Ttt
* <pre>
* @see <a href="https://www.cnblogs.com/liqforstudy/p/5652517.html"/>
* @see <a href="https://blog.csdn.net/mo_cold_rain/article/details/81366310"/>
* </pre>
*/
public final class BigDecimalUtils {
private BigDecimalUtils() {
}
// 日志 TAG
private static final String TAG = BigDecimalUtils.class.getSimpleName();
// 小数点位数
private static int NEW_SCALE = 10;
// 舍入模式 ( 默认向下取 )
private static int ROUNDING_MODE = BigDecimal.ROUND_DOWN;
/**
* 设置全局小数点保留位数、舍入模式
* @param scale 小数点保留位数
* @param roundingMode 舍入模式
*/
public static void setScale(
final int scale,
final int roundingMode
) {
NEW_SCALE = scale;
ROUNDING_MODE = roundingMode;
}
/**
* 获取 BigDecimal
* @param value Value
* @return {@link BigDecimal}
*/
public static BigDecimal getBigDecimal(final Object value) {
if (value == null) return null;
try {
if (value instanceof Double) {
return BigDecimal.valueOf((Double) value);
} else if (value instanceof Long) {
return new BigDecimal((Long) value);
} else if (value instanceof Float) {
return BigDecimal.valueOf((Float) value);
} else if (value instanceof Integer) {
return new BigDecimal((Integer) value);
} else if (value instanceof BigInteger) {
return new BigDecimal((BigInteger) value);
} else if (value instanceof BigDecimal) {
return (BigDecimal) value;
} else {
String strValue = ConvertUtils.newStringNotArrayDecode(value);
if (strValue != null) {
return new BigDecimal(strValue);
}
}
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "getBigDecimal");
}
return null;
}
/**
* 获取 Operation
* @param value Value
* @return {@link Operation}
*/
public static Operation operation(final Object value) {
return new Operation(value);
}
/**
* 获取 Operation
* @param value Value
* @param config {@link Config}
* @return {@link Operation}
*/
public static Operation operation(
final Object value,
final Config config
) {
return new Operation(value, config);
}
// ========
// = 包装类 =
// ========
/**
* detail: 计算异常
* @author Ttt
*/
public static class CalculateException
extends RuntimeException {
public CalculateException() {
}
}
/**
* detail: 配置信息
* @author Ttt
*/
public static final class Config {
// 小数点位数
private final int mScale;
// 舍入模式
private final int mRoundingMode;
public Config() {
this(NEW_SCALE, ROUNDING_MODE);
}
/**
* 初始化小数点保留位数、舍入模式
* @param scale 小数点保留位数
* @param roundingMode 舍入模式
*/
public Config(
final int scale,
final int roundingMode
) {
this.mScale = scale;
this.mRoundingMode = roundingMode;
}
/**
* 获取小数点保留位数
* @return 小数点保留位数
*/
public int getScale() {
return mScale;
}
/**
* 获取舍入模式
* @return 舍入模式
*/
public int getRoundingMode() {
return mRoundingMode;
}
}
/**
* detail: BigDecimal 操作包装类
* @author Ttt
*/
public static final class Operation {
// 计算数值
private BigDecimal mValue;
// 配置信息
private Config mConfig;
// 是否抛出异常
private boolean mThrowError = false;
public Operation(final Object value) {
this(value, null);
}
public Operation(
final Object value,
final Config config
) {
this.mValue = BigDecimalUtils.getBigDecimal(value);
this.mConfig = config;
}
// =
/**
* 检查 Value 是否为 null, 为 null 则抛出异常
* @return {@link Operation}
* @throws NullPointerException null 异常
*/
public Operation requireNonNull() {
if (mValue != null) return this;
throw new NullPointerException("mValue is null");
}
/**
* 内部抛出异常方法
*/
private void throwException() {
if (mThrowError) throw new CalculateException();
}
// ===========
// = get/set =
// ===========
/**
* 获取 Value
* @return {@link BigDecimal}
*/
public BigDecimal getBigDecimal() {
return mValue;
}
/**
* 设置 Value
* @param value {@link BigDecimal}
* @return {@link Operation}
*/
public Operation setBigDecimal(final Object value) {
this.mValue = BigDecimalUtils.getBigDecimal(value);
return this;
}
/**
* 获取配置信息
* @return {@link Config}
*/
public Config getConfig() {
return mConfig;
}
/**
* 设置配置信息
* @param config {@link Config}
* @return {@link Operation}
*/
public Operation setConfig(final Config config) {
return setConfig(config, true);
}
/**
* 设置配置信息
* @param config {@link Config}
* @param set 是否进行设置
* @return {@link Operation}
*/
public Operation setConfig(
final Config config,
final boolean set
) {
this.mConfig = config;
if (set) setScaleByConfig();
return this;
}
/**
* 移除配置信息
* @return {@link Operation}
*/
public Operation removeConfig() {
return setConfig(null, false);
}
// =
/**
* 设置小数点保留位数、舍入模式
* @param scale 小数点保留位数
* @param roundingMode 舍入模式
* @return {@link Operation}
*/
public Operation setScale(
final int scale,
final int roundingMode
) {
return setScale(new Config(scale, roundingMode));
}
/**
* 设置小数点保留位数、舍入模式
* @param config {@link Config}
* @return {@link Operation}
*/
public Operation setScale(final Config config) {
if (mValue != null && config != null) {
try {
mValue = mValue.setScale(
config.getScale(),
config.getRoundingMode()
);
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "setScale");
throwException();
}
} else {
throwException();
}
return this;
}
/**
* 设置小数点保留位数、舍入模式
* @return {@link Operation}
*/
public Operation setScaleByConfig() {
return setScale(mConfig);
}
// =
/**
* 是否抛出异常
* @return {@code true} yes, {@code false} no
*/
public boolean isThrowError() {
return mThrowError;
}
/**
* 设置是否抛出异常
* @param throwError 是否抛出异常
* @return {@link Operation}
*/
public Operation setThrowError(final boolean throwError) {
this.mThrowError = throwError;
return this;
}
// ==========
// = 获取方法 =
// ==========
/**
* 克隆对象
* @return {@link Operation}
*/
public Operation clone() {
return new Operation(mValue, mConfig);
}
/**
* 获取此 BigDecimal 的字符串表示形式科学记数法
* @return 此 BigDecimal 的字符串表示形式科学记数法
*/
public String toString() {
return (mValue != null) ? mValue.toString() : null;
}
/**
* 获取此 BigDecimal 的字符串表示形式不带指数字段
* @return 此 BigDecimal 的字符串表示形式不带指数字段
*/
public String toPlainString() {
return (mValue != null) ? mValue.toPlainString() : null;
}
/**
* 获取此 BigDecimal 的字符串表示形式工程计数法
* @return 此 BigDecimal 的字符串表示形式工程计数法
*/
public String toEngineeringString() {
return (mValue != null) ? mValue.toEngineeringString() : null;
}
/**
* 获取指定类型值
* @return 指定类型值
*/
public int intValue() {
return (mValue != null) ? mValue.intValue() : 0;
}
/**
* 获取指定类型值
* @return 指定类型值
*/
public float floatValue() {
return (mValue != null) ? mValue.floatValue() : 0F;
}
/**
* 获取指定类型值
* @return 指定类型值
*/
public long longValue() {
return (mValue != null) ? mValue.longValue() : 0L;
}
/**
* 获取指定类型值
* @return 指定类型值
*/
public double doubleValue() {
return (mValue != null) ? mValue.doubleValue() : 0D;
}
// =====
// = 加 =
// =====
/**
* 提供精确的加法运算
* @param value 加数
* @return {@link Operation}
*/
public Operation add(final Object value) {
BigDecimal bigDecimal = BigDecimalUtils.getBigDecimal(value);
if (mValue != null && bigDecimal != null) {
mValue = mValue.add(bigDecimal);
} else {
throwException();
}
return this;
}
// =====
// = 减 =
// =====
/**
* 提供精确的减法运算
* @param value 减数
* @return {@link Operation}
*/
public Operation subtract(final Object value) {
BigDecimal bigDecimal = BigDecimalUtils.getBigDecimal(value);
if (mValue != null && bigDecimal != null) {
mValue = mValue.subtract(bigDecimal);
} else {
throwException();
}
return this;
}
// =====
// = 乘 =
// =====
/**
* 提供精确的乘法运算
* @param value 乘数
* @return {@link Operation}
*/
public Operation multiply(final Object value) {
BigDecimal bigDecimal = BigDecimalUtils.getBigDecimal(value);
if (mValue != null && bigDecimal != null) {
mValue = mValue.multiply(bigDecimal);
} else {
throwException();
}
return this;
}
// =====
// = 除 =
// =====
/**
* 提供精确的除法运算
* @param value 除数
* @return {@link Operation}
*/
public Operation divide(final Object value) {
return divide(value, mConfig);
}
/**
* 提供精确的除法运算
* @param value 除数
* @param config {@link Config}
* @return {@link Operation}
*/
public Operation divide(
final Object value,
final Config config
) {
if (config != null) {
return divide(value, config.getScale(), config.getRoundingMode());
} else {
return divide(value, NEW_SCALE, ROUNDING_MODE);
}
}
/**
* 提供精确的除法运算
* @param value 除数
* @param scale 保留 scale 位小数
* @param roundingMode 舍入模式
* @return {@link Operation}
*/
public Operation divide(
final Object value,
final int scale,
final int roundingMode
) {
BigDecimal bigDecimal = BigDecimalUtils.getBigDecimal(value);
if (mValue != null && bigDecimal != null) {
try {
mValue = mValue.divide(bigDecimal, scale, roundingMode);
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "divide");
throwException();
}
} else {
throwException();
}
return this;
}
// =======
// = 取余 =
// =======
/**
* 提供精确的取余运算
* @param value 除数
* @return {@link Operation}
*/
public Operation remainder(final Object value) {
BigDecimal bigDecimal = BigDecimalUtils.getBigDecimal(value);
if (mValue != null && bigDecimal != null) {
mValue = mValue.remainder(bigDecimal);
} else {
throwException();
}
return this;
}
// ==========
// = 四舍五入 =
// ==========
/**
* 提供精确的小数位四舍五入处理
* @return {@link Operation}
*/
public Operation round() {
return round(mConfig);
}
/**
* 提供精确的小数位四舍五入处理
* @param config {@link Config}
* @return {@link Operation}
*/
public Operation round(final Config config) {
return divide(new BigDecimal("1"), config);
}
/**
* 提供精确的小数位四舍五入处理
* @param scale 保留 scale 位小数
* @param roundingMode 舍入模式
* @return {@link Operation}
*/
public Operation round(
final int scale,
final int roundingMode
) {
return divide(new BigDecimal("1"), scale, roundingMode);
}
// ==========
// = 比较大小 =
// ==========
/**
* 比较大小
* @param value 被比较的数字
* @return [1 = v1 > v2]、[-1 = v1 < v2]、[0 = v1 = v2]、[-2 = error]
*/
public int compareTo(final Object value) {
BigDecimal bigDecimal = BigDecimalUtils.getBigDecimal(value);
if (mValue != null && bigDecimal != null) {
try {
return mValue.compareTo(bigDecimal);
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "compareTo");
throwException();
}
} else {
throwException();
}
return -2;
}
// ==========
// = 金额分割 =
// ==========
/**
* 金额分割, 四舍五入金额
* @return 指定格式处理的字符串
*/
public String formatMoney() {
return formatMoney(mConfig);
}
/**
* 金额分割, 四舍五入金额
* @param splitNumber 拆分位数
* @param splitSymbol 拆分符号
* @return 指定格式处理的字符串
*/
public String formatMoney(
final int splitNumber,
final String splitSymbol
) {
return formatMoney(mConfig, splitNumber, splitSymbol);
}
// =
/**
* 金额分割, 四舍五入金额
* @param config {@link Config}
* @return 指定格式处理的字符串
*/
public String formatMoney(final Config config) {
return formatMoney(config, 3, ",");
}
/**
* 金额分割, 四舍五入金额
* @param config {@link Config}
* @param splitNumber 拆分位数
* @param splitSymbol 拆分符号
* @return 指定格式处理的字符串
*/
public String formatMoney(
final Config config,
final int splitNumber,
final String splitSymbol
) {
if (config != null) {
return formatMoney(config.getScale(), config.getRoundingMode(), splitNumber, splitSymbol);
} else {
return formatMoney(NEW_SCALE, ROUNDING_MODE, splitNumber, splitSymbol);
}
}
/**
* 金额分割, 四舍五入金额
* @param scale 小数点后保留几位
* @param mode 处理模式
* @param splitNumber 拆分位数
* @param splitSymbol 拆分符号
* @return 指定格式处理的字符串
*/
public String formatMoney(
final int scale,
final int mode,
final int splitNumber,
final String splitSymbol
) {
if (mValue == null) return null;
try {
// 如果等于 0, 直接返回
if (mValue.doubleValue() == 0) {
return mValue.setScale(scale, mode).toPlainString();
}
// 获取原始值字符串 ( 非科学计数法 )
String valuePlain = mValue.toPlainString();
// 判断是否负数
boolean isNegative = valuePlain.startsWith("-");
// 处理后的数据
BigDecimal bigDecimal = new BigDecimal(isNegative ? valuePlain.substring(1) : valuePlain);
// 范围处理
valuePlain = bigDecimal.setScale(scale, mode).toPlainString();
// 进行拆分小数点处理
String[] values = valuePlain.split("\\.");
// 判断是否存在小数点
boolean isDecimal = (values.length == 2);
// 拼接符号
String symbol = (splitSymbol != null) ? splitSymbol : "";
// 防止出现负数
int number = Math.max(splitNumber, 0);
// 格式化数据 ( 拼接处理 )
StringBuilder builder = new StringBuilder();
// 进行处理小数点前的数值
for (int len = values[0].length() - 1, i = len, splitPos = 1; i >= 0; i--) {
char ch = values[0].charAt(i);
builder.append(ch);
// 判断是否需要追加符号
if (number > 0 && splitPos % number == 0 && i != 0) {
builder.append(symbol);
}
splitPos++;
}
// 倒序处理
builder.reverse();
// 存在小数点, 则进行拼接
if (isDecimal) {
builder.append(".").append(values[1]);
}
// 判断是否负数
return isNegative ? "-" + builder.toString() : builder.toString();
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "formatMoney");
}
return null;
}
}
// ==================
// = 获取指定格式字符串 =
// ==================
/**
* 获取自己想要的数据格式
* @param value 需处理的数据
* @param numOfIntPart 整数位数
* @param numOfDecimalPart 小数位数
* @return 处理过的数据
*/
public static String adjustDouble(
final String value,
final int numOfIntPart,
final int numOfDecimalPart
) {
if (value == null) return null;
try {
// 按小数点的位置分割成整数部分和小数部分
String[] array = value.split("\\.");
char[] tempA = new char[numOfIntPart];
char[] tempB = new char[numOfDecimalPart];
// 整数部分满足精度要求
if (array[0].length() == numOfIntPart) {
// 直接获取整数部分长度字符
for (int i = 0; i < array[0].length(); i++) {
tempA[i] = array[0].charAt(i);
}
// 小数部分精度大于或等于指定的精度
if (numOfDecimalPart <= array[1].length()) {
for (int i = 0; i < numOfDecimalPart; i++) {
tempB[i] = array[1].charAt(i);
}
}
// 小数部分精度小于指定的精度
if (numOfDecimalPart > array[1].length()) {
for (int i = 0; i < numOfDecimalPart; i++) {
if (i < array[1].length()) {
tempB[i] = array[1].charAt(i);
} else {
tempB[i] = '0';
}
}
}
if (numOfDecimalPart == 0) {
return String.valueOf(tempA) + String.valueOf(tempB);
}
return String.valueOf(tempA) + "." + String.valueOf(tempB);
}
// 整数部分位数大于精度要求
if (array[0].length() > numOfIntPart) {
// 先倒序获取指定位数的整数
for (int i = array[0].length() - 1, j = 0; (i >= array[0].length() - numOfIntPart) && (j < numOfIntPart); i--, j++) {
tempA[j] = array[0].charAt(i);
}
char[] tempA1 = new char[numOfIntPart];
// 调整顺序
for (int j = 0, k = tempA.length - 1; j < numOfIntPart && (k >= 0); j++, k--) {
tempA1[j] = tempA[k];
}
// 小数部分精度大于或等于指定的精度
if (numOfDecimalPart <= array[1].length()) {
for (int i = 0; i < numOfDecimalPart; i++) {
tempB[i] = array[1].charAt(i);
}
}
// 小数部分精度小于指定的精度
if (numOfDecimalPart > array[1].length()) {
for (int i = 0; i < numOfDecimalPart; i++) {
if (i < array[1].length()) {
tempB[i] = array[1].charAt(i);
} else {
tempB[i] = '0';
}
}
}
return String.valueOf(tempA1) + "." + String.valueOf(tempB);
}
// 先倒序获取指定位数的整数
char[] tempA1 = new char[numOfIntPart];
for (int i = array[0].length() - 1, j = 0; (i >= 0) && (j < numOfIntPart); i--, j++) {
tempA1[j] = array[0].charAt(i);
}
// 补 0
for (int i = array[0].length(); i < array[0].length() + numOfIntPart - array[0].length(); i++) {
tempA1[i] = '0';
}
char[] tempA2 = new char[numOfIntPart];
// 调整顺序
for (int j = 0, k = tempA1.length - 1; j < numOfIntPart && (k >= 0); j++) {
tempA2[j] = tempA1[k];
k--;
}
// 小数部分精度小于指定的精度
if (numOfDecimalPart > array[1].length()) {
for (int i = 0; i < numOfDecimalPart; i++) {
if (i < array[1].length()) {
tempB[i] = array[1].charAt(i);
} else {
tempB[i] = '0';
}
}
}
// 小数部分精度大于或等于指定的精度
if (numOfDecimalPart <= array[1].length()) {
for (int i = 0; i < numOfDecimalPart; i++) {
tempB[i] = array[1].charAt(i);
}
}
if (numOfDecimalPart == 0) {
return String.valueOf(tempA2) + String.valueOf(tempB);
}
return String.valueOf(tempA2) + "." + String.valueOf(tempB);
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "adjustDouble");
}
return null;
}
// ==========
// = 快捷方法 =
// ==========
// ==========
// = 比较大小 =
// ==========
/**
* 比较大小
* @param v1 输入的数值
* @param v2 被比较的数字
* @return [1 = v1 > v2]、[-1 = v1 < v2]、[0 = v1 = v2]、[-2 = error]
*/
public static int compareTo(
final Object v1,
final Object v2
) {
try {
return compareToThrow(v1, v2);
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "compareTo");
}
return -2;
}
/**
* 比较大小 ( 抛出异常 )
* @param v1 输入的数值
* @param v2 被比较的数字
* @return [1 = v1 > v2]、[-1 = v1 < v2]、[0 = v1 = v2]
*/
public static int compareToThrow(
final Object v1,
final Object v2
)
throws Exception {
return operation(v1).setThrowError(true).compareTo(v2);
}
// ==========
// = 捕获异常 =
// ==========
// =====
// = 加 =
// =====
/**
* 提供精确的加法运算
* @param v1 被加数
* @param v2 加数
* @return 两个参数的和
*/
public static double add(
final Object v1,
final Object v2
) {
try {
return addThrow(v1, v2);
} catch (Exception e) {
return DevFinal.DEFAULT.DOUBLE;
}
}
/**
* 提供精确的加法运算
* @param v1 被加数
* @param v2 加数
* @param scale 保留 scale 位小数
* @return 两个参数的和
*/
public static double add(
final Object v1,
final Object v2,
final int scale
) {
try {
return addThrow(v1, v2, scale);
} catch (Exception e) {
return DevFinal.DEFAULT.DOUBLE;
}
}
/**
* 提供精确的加法运算
* @param v1 被加数
* @param v2 加数
* @param config {@link Config}
* @return 两个参数的和
*/
public static double add(
final Object v1,
final Object v2,
final Config config
) {
try {
return addThrow(v1, v2, config);
} catch (Exception e) {
return DevFinal.DEFAULT.DOUBLE;
}
}
/**
* 提供精确的加法运算
* @param v1 被加数
* @param v2 加数
* @param scale 保留 scale 位小数
* @param roundingMode 舍入模式
* @return 两个参数的和
*/
public static double add(
final Object v1,
final Object v2,
final int scale,
final int roundingMode
) {
try {
return addThrow(v1, v2, scale, roundingMode);
} catch (Exception e) {
return DevFinal.DEFAULT.DOUBLE;
}
}
// =====
// = 减 =
// =====
/**
* 提供精确的减法运算
* @param v1 被减数
* @param v2 减数
* @return 两个参数的差
*/
public static double subtract(
final Object v1,
final Object v2
) {
try {
return subtractThrow(v1, v2);
} catch (Exception e) {
return DevFinal.DEFAULT.DOUBLE;
}
}
/**
* 提供精确的减法运算
* @param v1 被减数
* @param v2 减数
* @param scale 保留 scale 位小数
* @return 两个参数的差
*/
public static double subtract(
final Object v1,
final Object v2,
final int scale
) {
try {
return subtractThrow(v1, v2, scale);
} catch (Exception e) {
return DevFinal.DEFAULT.DOUBLE;
}
}
/**
* 提供精确的减法运算
* @param v1 被减数
* @param v2 减数
* @param config {@link Config}
* @return 两个参数的差
*/
public static double subtract(
final Object v1,
final Object v2,
final Config config
) {
try {