摘要: 1 import java.io.Serializable; 2 import java.util.ArrayList; 3 import java.util.List; 4 5 import cn.hutool.core.clone.CloneRuntimeException; 6 import 阅读全文
posted @ 2022-01-12 11:30 Qi-BJ 阅读(2949) 评论(0) 推荐(0) 编辑
摘要: 1、当 value 的值的类型为 int 时,new BigDecimal(value) 和 BigDecimal.valueOf(value) 的区别 根据 BigDecimal 类的源码可以看出,new BigDecimal(value) 是先创建一个 BigDecimal 类的对象,然后对 B 阅读全文
posted @ 2022-01-12 09:47 Qi-BJ 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 参阅:如何解决跨域问题? 阅读全文
posted @ 2020-06-20 13:36 Qi-BJ 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 请参考:https://blog.csdn.net/bwlab/article/details/46954299 阅读全文
posted @ 2020-04-04 18:02 Qi-BJ 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1. 注意事项 一元线性回归模型对异常值比较敏感,应考虑在生成方程前对数据进行预处理。 对于回归分析的相关定义,请参考: https://support.minitab.com/zh-cn/minitab/19/help-and-how-to/modeling-statistics/regressi 阅读全文
posted @ 2020-03-31 22:40 Qi-BJ 阅读(1954) 评论(0) 推荐(1) 编辑
摘要: Java中使用对象的父类的clone方法和直接赋值都是浅拷贝,例如: class Student implements Cloneable { ... public Object clone() throws CloneNotSupportedException { Object object = 阅读全文
posted @ 2020-01-07 11:11 Qi-BJ 阅读(1760) 评论(0) 推荐(0) 编辑
摘要: 参阅:Spring中使用DataSourceTransactionManager进行事务管理的xml配置 阅读全文
posted @ 2019-12-20 12:40 Qi-BJ 阅读(1259) 评论(0) 推荐(0) 编辑
摘要: 博客链接 阅读全文
posted @ 2019-12-16 11:37 Qi-BJ 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 狂神说的博客:https://blog.kuangstudy.com/ 阅读全文
posted @ 2019-11-18 11:09 Qi-BJ 阅读(170) 评论(0) 推荐(0) 编辑
摘要: str为字符串 str.isalnum() 所有字符都是数字或者字母,为真返回 Ture,否则返回 False str.isalpha() 所有字符都是字母,为真返回 Ture,否则返回 False str.isdigit() 所有字符都是数字,为真返回 Ture,否则返回 False str.is 阅读全文
posted @ 2019-11-15 20:48 Qi-BJ 阅读(4164) 评论(0) 推荐(0) 编辑