DoubleUtils.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. package cn.gyee.tamplate.util;
  2. import java.math.BigDecimal;
  3. /**
  4. * @ClassName : DoubleUtils
  5. * @Author : xieshengjie
  6. * @Date: 2021/3/6 17:48
  7. * @Description : 对单列统计过滤null
  8. */
  9. public class DoubleUtils {
  10. public static Double ifNullSet0(Double in) {
  11. if (in != null) {
  12. return in;
  13. }
  14. return 0.0;
  15. }
  16. public static Integer ifNullSet0(Integer in) {
  17. if (in != null) {
  18. return in;
  19. }
  20. return 0;
  21. }
  22. public static Double sum(Double ...in){
  23. Double result = 0.0;
  24. for (int i = 0; i < in.length; i++){
  25. result = result+(ifNullSet0(in[i]));
  26. }
  27. return result;
  28. }
  29. public static String hb(String ...in){
  30. String result = "";
  31. for (int i = 0; i < in.length; i++){
  32. result = result+in[i];
  33. }
  34. return result;
  35. }
  36. public static Integer sum(Integer ...in) {
  37. Integer result = 0;
  38. for (int i = 0; i < in.length; i++){
  39. result = result+(ifNullSet0(in[i]));
  40. }
  41. return result;
  42. }
  43. public static Double max(Double ...in){
  44. Double result = 0.0;
  45. for (int i = 0; i < in.length; i++){
  46. if (result<ifNullSet0(in[i])){
  47. result=ifNullSet0(in[i]);
  48. }
  49. }
  50. return result;
  51. }
  52. public static Double min(Double ...in){
  53. Double result = 0.0;
  54. for (int i = 0; i < in.length; i++){
  55. if (i==0){
  56. result=ifNullSet0(in[0]);
  57. }
  58. if (result>ifNullSet0(in[i])){
  59. result=ifNullSet0(in[i]);
  60. }
  61. }
  62. return result;
  63. }
  64. public static Double ave(Double ...in){
  65. if(in.length==0){
  66. return 0.0;
  67. }else{
  68. return sum(in)/in.length;
  69. }
  70. }
  71. /**
  72. *
  73. * @param numA 数字A
  74. * @param numB 数字B
  75. * @param operate 运算符
  76. * @return
  77. */
  78. public static double GetResult(double numA, double numB, String operate){
  79. double res = 0;
  80. BigDecimal bigA = new BigDecimal(Double.toString(numA));
  81. BigDecimal bigB = new BigDecimal(Double.toString(numB));
  82. switch (operate) {
  83. case "+":
  84. res = bigA.add(bigB).doubleValue();
  85. break;
  86. case "-":
  87. res = bigA.subtract(bigB).doubleValue();
  88. break;
  89. case "*":
  90. res = bigA.multiply(bigB).doubleValue();
  91. break;
  92. case "/":
  93. res = bigA.divide(bigB).doubleValue();
  94. break;
  95. default :
  96. System.out.println("运算符不合法~");
  97. break;
  98. }
  99. return res;
  100. }
  101. }