随笔分类 - 方法区
摘要:进行了简单测试 git地址: https://github.com/zhyue1983/kafkaTest.git 参考文档: https://blog.csdn.net/u012129558/article/details/80065869 https://www.cnblogs.com/tysl
阅读全文
摘要:网上发现没有简洁明晰的List to Tree代码,众所周知宇宙第一IDE的原因对写了一个C#版本的,后续有机会再写一个java的吧。需要java的可以看一下思路 1 using System; 2 using System.Collections.Generic; 3 using Newtonso
阅读全文
摘要:string idsStr = "1,2,3,4,5"; int[] ids = idsStr.Split(',').Select(Int32.Parse).ToArray();
阅读全文