摘要: /** * 平分list成n份 数据量尽可能相等 * @param list 需要平分的list * @param n 平分成n分 * @return */ public static <T> List<List<T>> splitList(List<T> list, int n) { List<L 阅读全文
posted @ 2022-04-20 15:11 yx袁祥 阅读(109) 评论(0) 推荐(0)
摘要: ![](https://img2020.cnblogs.com/blog/2206655/202112/2206655-20211216175417716-1721821704.png) 阅读全文
posted @ 2021-12-16 17:54 yx袁祥 阅读(511) 评论(0) 推荐(0)
摘要: 第07章_单行函数 讲师:尚硅谷-宋红康(江湖人称:康师傅) 官网:http://www.atguigu.com 1. 函数的理解 1.1 什么是函数 函数在计算机语言的使用中贯穿始终,函数的作用是什么呢?它可以把我们经常使用的代码封装起来,需要的时候直接调用即可。这样既提高了代码效率,又提高了可维 阅读全文
posted @ 2021-12-10 08:52 yx袁祥 阅读(29) 评论(0) 推荐(1)
摘要: 代码正常运行是没有问题的,但是单元测试时却会出现上述问题,一直无法解决。代码上传后同事本地运行我的单元测试,居然是好用的。所以猜测是环境问题。本地切换成jdk1.8,然后居然就好了!!!!!!! 阅读全文
posted @ 2021-12-02 10:30 yx袁祥 阅读(284) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/wzk-0000/p/9542695.html 阅读全文
posted @ 2021-11-13 14:56 yx袁祥 阅读(24) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/itzyz/p/10844004.html 阅读全文
posted @ 2021-10-14 17:45 yx袁祥 阅读(63) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/u011781521/article/details/79669180 阅读全文
posted @ 2021-10-11 14:23 yx袁祥 阅读(15) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/xiaopan-cp9/p/8257761.html 阅读全文
posted @ 2021-10-11 10:39 yx袁祥 阅读(75) 评论(0) 推荐(0)
摘要: // 马一鸣 @RequestMapping(value = "/excelOut") public void excelStandardmplateOut(HttpServletRequest request, HttpServletResponse response) throws IOExce 阅读全文
posted @ 2021-09-27 11:23 yx袁祥 阅读(139) 评论(0) 推荐(0)
摘要: public static void main(String[] args) { MonthDay now = MonthDay.now();// --09-16 System.out.println(now); MonthDay begin = MonthDay.of(9, 16); MonthD 阅读全文
posted @ 2021-09-24 17:59 yx袁祥 阅读(65) 评论(0) 推荐(0)