Java工具集-数学(反比例函数)
- 2019 年 10 月 26 日
- 筆記
简单工具类
写作初衷:由于日常开发经常需要用到很多工具类,经常根据需求自己写也比较麻烦 网上好了一些工具类例如commom.lang3或者hutool或者Jodd这样的开源工具,但是 发现他们之中虽然设计不错,但是如果我想要使用,就必须要引入依赖并且去维护依赖,有些 甚至会有存在版本编译不通过问题,故此想要写作一个每个类都可以作为独立工具类使用 每个使用者只需要复制该类,到任何项目当中都可以使用,所以需要尊从以下两个原则才能 做到.在此诚邀各位大佬参与.可以把各自用过的工具,整合成只依赖JDK,每个类都能够单独 使用的工具.每个人当遇到业务需求需要使用的时候,只需要到这里单独拷贝一个即可使用. 抛弃传统的需要引入依赖的烦恼.让大家一起来解决你所面临的业务问题吧!
介绍
遵从两大原则
- 1.绝不依赖JDK以外的源码
- 2.牺牲代码复用性,每个类都必须是单独的组件,绝不互相引用,做到完全解耦
package *; import java.math.BigDecimal; /** * @program: simple_tools * @description: 数学(反比例函数) * @author: Mr.chen * @create: 2019-10-24 22:10 **/ public class InverseFunction { // y = k/x //斜率 private double k = 1; private static InverseFunction instance; private InverseFunction(){}; static{ if(instance == null){ synchronized (InverseFunction.class){ if(instance == null){ instance = new InverseFunction(); } } } } /** * 创建反比例函数 * @param k */ public static void init(double k){ if(k == 0){ throw new RuntimeException("param k is not be zero"); } instance.setK(k); } /** * 使用一个点初始化反比例函数 * @param point */ public static void init(Point point){ if(point == null){ throw new RuntimeException("point k is not be null"); } double x = point.getX(); double y = point.getY(); double k = new BigDecimal(x / y).setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue(); instance.setK(k); } /** * 判断点point是否在线上 * @param point * @return */ public static boolean isOnline(Point point){ if(point == null){ throw new RuntimeException("point is not be null !"); } double x = point.getX(); double y = point.getY(); return instance.getK() == x / y; } //点 public static class Point{ // x坐标 private double x; // y坐标 private double y; public Point(double x,double y){ this.x = x; this.y = y; } public double getX() { return x; } public void setX(double x) { this.x = x; } public double getY() { return y; } public void setY(double y) { this.y = y; } } public double getK() { return k; } public void setK(double k) { this.k = k; } }