摘要:
attr("sort") 阅读全文
摘要:
unshift:将参数添加到原数组开头,并返回数组的长度pop:删除原数组最后一项,并返回删除元素的值;如果数组为空则返回undefinedpush:将参数添加到原数组末尾,并返回数组的长度concat:返回一个新数组,是将参数添加到原数组中构成的splice(start,deleteCount,v 阅读全文
摘要:
https://benchmarksgame-team.pages.debian.net/benchmarksgame/fastest/csharp.html 阅读全文
摘要:
最近有同学反馈,Axure的谷歌浏览器插件无法安装。 在用谷歌浏览器打开Axure生成的本地HTML文件时,会提示安装扩展程序Axure RP Extension for Chrome。但是按照之前中文网提供的安装方法,在最新版的谷歌浏览器中已经无法安装成功。会提示: 程序包无效:“CRX_HEAD 阅读全文
摘要:
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 阅读全文
摘要:
import java.util.Collections; yphlLin.set(index, null); //移除List中所有null yphlLin.removeAll(Collections.singleton(null)) 阅读全文
摘要:
Map<String, BigDecimal> teacherContribution = resultList.stream().collect(Collectors.toMap(RankingTeacherTotal::getUserId, RankingTeacherTotal::getVal 阅读全文
摘要:
工作中用到了list的取差集,发现还是挺好用的。所以记录下。 需求list的方法说明备注 交集 listA.retainAll(listB) listA内容变为listA和listB都存在的对象 listB不变 差集 listA.removeAll(listB) listA中存在的listB的内容去 阅读全文