随笔分类 -  java

关于java的一些知识
摘要:https://www.cnblogs.com/zenghi-home/p/11589502.html 阅读全文
posted @ 2021-11-11 14:35 弓呆的胖次 阅读(55) 评论(0) 推荐(0)
摘要:思路:我们需要维护当前每个链表没有被合并的元素的最前面一个,kk 个链表就最多有 kk 个满足这样条件的元素,每次在这些元素里面选取 val 属性最小的元素合并到答案中。在选取最小元素的时候,我们可以用优先队列来优化这个过程。 作者:LeetCode-Solution链接:https://leetc 阅读全文
posted @ 2021-09-07 15:14 弓呆的胖次 阅读(515) 评论(0) 推荐(0)
摘要:https://www.sczyh30.com/posts/Java/java-reflection-1/ 阅读全文
posted @ 2021-08-23 09:01 弓呆的胖次 阅读(24) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/Vince_Wang1/article/details/105888297 介绍1.8与1.7版本HashMap不同点 https://blog.csdn.net/u010890358/article/details/80496144 这个详细介绍了1.8 阅读全文
posted @ 2021-07-13 10:47 弓呆的胖次 阅读(66) 评论(0) 推荐(0)
摘要:https://mp.weixin.qq.com/s/0_otLJG_TOYvvocdwHWBSQ 阅读全文
posted @ 2021-03-25 20:23 弓呆的胖次 阅读(77) 评论(0) 推荐(0)
摘要:https://mp.weixin.qq.com/s/8q55TQ0HmiVcys6fd0Lm9A 阅读全文
posted @ 2021-03-09 16:00 弓呆的胖次 阅读(43) 评论(0) 推荐(0)
摘要:教程 https://blog.csdn.net/sjdjjd6466446/article/details/110005937 代码 https://github.com/GoogleLLP/SuperMarket 阅读全文
posted @ 2021-01-25 15:32 弓呆的胖次 阅读(350) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/y_k_y/article/details/84633001 重点提一下anyMatch allMatch:接收一个 Predicate 函数,当流中每个元素都符合该断言时才返回true,否则返回false noneMatch:接收一个 Predicate 阅读全文
posted @ 2021-01-22 20:37 弓呆的胖次 阅读(481) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/qq_29753285/article/details/93992594 下载JDK的时候,10k每秒的速度简直难以忍受,下面列出了一些解决方法 可用的加速方法 将下载链接去掉https由于下载时默认是https,所以会慢一些,使用http之后虽然还是慢, 阅读全文
posted @ 2021-01-09 21:03 弓呆的胖次 阅读(1325) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/pretty-sunshine/p/9950541.html 1、Ctrl+N按名字搜索类 相当于eclipse的ctrl+shift+R,输入类名可以定位到这个类文件,就像idea在其它的搜索部分的表现一样,搜索类名也能对你所要搜索的内容多个部分进行 阅读全文
posted @ 2021-01-09 19:56 弓呆的胖次 阅读(316) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/zjhred/article/details/84976734 阅读全文
posted @ 2020-12-30 18:41 弓呆的胖次 阅读(94) 评论(0) 推荐(0)
摘要:方法注释 /** * Returns an immutable list containing only the specified object. * The returned list is serializable. * * @param <T> the class of the object 阅读全文
posted @ 2020-12-30 18:38 弓呆的胖次 阅读(244) 评论(0) 推荐(0)
摘要:https://bbs.csdn.net/topics/390203153 阅读全文
posted @ 2020-11-06 21:14 弓呆的胖次 阅读(189) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/m0_37125796/article/details/88844109 阅读全文
posted @ 2020-11-05 18:56 弓呆的胖次 阅读(1227) 评论(0) 推荐(0)
摘要:https://my.oschina.net/u/195065/blog/190747 需求: 基于url获取host,case如下: http://snv.iteye.com/blog/1992991结果为snv.iteye.com snv.iteye.com/blog/1992991结果为snv 阅读全文
posted @ 2020-10-29 20:56 弓呆的胖次 阅读(4331) 评论(0) 推荐(0)
摘要:<!-- https://mvnrepository.com/artifact/org.apache.directory.studio/org.apache.commons.codec --> <dependency> <groupId>org.apache.directory.studio</gr 阅读全文
posted @ 2020-10-29 19:06 弓呆的胖次 阅读(5923) 评论(0) 推荐(0)
摘要:原作 https://www.cnblogs.com/winner-0715/p/6109037.html?utm_source=itdadao&utm_medium=referral 依赖可以用这个: 或者: <dependency> <groupId>com.fasterxml.jackson. 阅读全文
posted @ 2020-10-28 21:30 弓呆的胖次 阅读(32653) 评论(0) 推荐(1)
摘要:原作: https://www.cnblogs.com/jpfss/p/9929108.html <T> T表示返回值是一个泛型,传递啥,就返回啥类型的数据,而单独的T就是表示限制你传递的参数类型,这个案例中,通过一个泛型的返回方式,获取每一个集合中的第一个数据, 通过返回值<T> T 和T的两种方 阅读全文
posted @ 2020-10-27 14:22 弓呆的胖次 阅读(242) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/ysocean/p/8486500.html 阅读全文
posted @ 2020-10-27 11:22 弓呆的胖次 阅读(74) 评论(0) 推荐(0)
摘要:而BeanPropertyRowMapper通过反射来实现db的记录到PO的映射 挖个坑 阅读全文
posted @ 2020-10-23 21:09 弓呆的胖次 阅读(185) 评论(0) 推荐(0)