摘要: 最近有同学反馈,Axure的谷歌浏览器插件无法安装。 在用谷歌浏览器打开Axure生成的本地HTML文件时,会提示安装扩展程序Axure RP Extension for Chrome。但是按照之前中文网提供的安装方法,在最新版的谷歌浏览器中已经无法安装成功。会提示: 程序包无效:“CRX_HEAD 阅读全文
posted @ 2020-06-16 15:14 八英里 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 5 3 I am getting this warning on Sonar: Avoid using implementation types like 'HashMap'; use the interface instead What does it mean? The class in whi 阅读全文
posted @ 2020-06-16 14:42 八英里 阅读(713) 评论(0) 推荐(0) 编辑
摘要: import java.util.Collections; yphlLin.set(index, null); //移除List中所有null yphlLin.removeAll(Collections.singleton(null)) 阅读全文
posted @ 2020-06-16 11:31 八英里 阅读(2438) 评论(0) 推荐(0) 编辑
摘要: Map<String, BigDecimal> teacherContribution = resultList.stream().collect(Collectors.toMap(RankingTeacherTotal::getUserId, RankingTeacherTotal::getVal 阅读全文
posted @ 2020-06-16 11:23 八英里 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 工作中用到了list的取差集,发现还是挺好用的。所以记录下。 需求list的方法说明备注 交集 listA.retainAll(listB) listA内容变为listA和listB都存在的对象 listB不变 差集 listA.removeAll(listB) listA中存在的listB的内容去 阅读全文
posted @ 2020-06-16 10:25 八英里 阅读(3780) 评论(0) 推荐(0) 编辑