写作初衷:由于日常开发经常需要用到很多工具类,经常根据需求自己写也比较麻烦 网上好了一些工具类例如commom.lang3或者hutool或者Jodd这样的开源工具,但是 发现他们之中虽然设计不错,但是如果我想要使用,就必须要引入依赖并且去维护依赖,有些 甚至会有存在版本编译不通过问题,故此想要写作一个每个类都可以作为独立工具类使用 每个使用者只需要复制该类,到任何项目当中都可以使用,所以需要尊从以下两个原则才能 做到.在此诚邀各位大佬参与.可以把各自用过的工具,整合成只依赖JDK,每个类都能够单独 使用的工具.每个人当遇到业务需求需要使用的时候,只需要到这里单独拷贝一个即可使用. 抛弃传统的需要引入依赖的烦恼.让大家一起来解决你所面临的业务问题吧!
遵从两大原则
package *;
import java.text.DecimalFormat;
/**
* @program: simple_tools
* @description: 圆柱体,椎体工具类
* @author: ChenWenLong
* @create: 2019-06-03 17:59
**/
public class CylinderUtils {
public static final DecimalFormat ROUNDING_OFF = new DecimalFormat("#.00");
/**
* 功能描述:
* 〈获取四舍五入的结果值,并且取得绝对值,解决负数情况〉
*
* @params : [value]
* @return : double
* @author : cwl
* @date : 2019/6/3 15:50
*/
public static double roundValue(double value){
return Math.abs(Double.valueOf(ROUNDING_OFF.format(value)));
}
/**
* 功能描述:
* 〈是否是圆柱体〉
*
* @params : [r, highth]
* @return : boolean
* @author : cwl
* @date : 2019/6/3 18:01
*/
public static boolean isCylinder(double r,double highth){
if(r == 0 || highth == 0){
throw new IllegalArgumentException("This isn't Cylinder");
}
return true;
}
/**
* 功能描述:
* 〈获取圆柱体表面积〉
*
* @params : [r, highth]
* @return : double
* @author : cwl
* @date : 2019/6/3 18:03
*/
public static double getArea(double r,double highth){
isCylinder(r,highth);
return roundValue(2*Math.PI*r*highth);
}
/**
* 功能描述:
* 〈获取圆柱体体积〉
*
* @params : [r, highth]
* @return : double
* @author : cwl
* @date : 2019/6/3 18:06
*/
public static double getVolume(double r,double highth){
isCylinder(r,highth);
return calculateVolume(r,highth,false);
}
/**
* 功能描述:
* 〈计算是圆柱体还是圆锥体的体积〉
*
* @params : [r, highth, isCircularCone]
* @return : double
* @author : cwl
* @date : 2019/6/4 10:56
*/
private static double calculateVolume(double r, double highth, boolean isCircularCone) {
if(isCircularCone){
double proportion = 1 / 3;
return roundValue(proportion*r*r*Math.PI*highth);
}
return roundValue(r*r*Math.PI*highth);
}
/**
* 功能描述:
* 〈获取圆柱体横截面积〉
*
* @params : [r, highth]
* @return : double
* @author : cwl
* @date : 2019/6/4 10:10
*/
public static double getCAS(double r,double highth){
isCylinder(r,highth);
return roundValue(2*r*highth);
}
/**
* 功能描述:
* 〈获取圆锥体的体积〉
*
* @params : [r, highth]
* @return : double
* @author : cwl
* @date : 2019/6/4 10:36
*/
public static double getVolume(double r,double highth,boolean isCircularCone){
isCylinder(r,highth);
return calculateVolume(r,highth,isCircularCone);
}
}