上一页 1 ··· 48 49 50 51 52 53 54 55 56 ··· 76 下一页
摘要: unshift:将参数添加到原数组开头,并返回数组的长度pop:删除原数组最后一项,并返回删除元素的值;如果数组为空则返回undefinedpush:将参数添加到原数组末尾,并返回数组的长度concat:返回一个新数组,是将参数添加到原数组中构成的splice(start,deleteCount,v 阅读全文
posted @ 2020-06-29 11:21 八英里 阅读(18300) 评论(0) 推荐(0) 编辑
摘要: https://benchmarksgame-team.pages.debian.net/benchmarksgame/fastest/csharp.html 阅读全文
posted @ 2020-06-17 10:38 八英里 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 最近有同学反馈,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) 编辑
摘要: 软件去官网下载安装即可。 适用于Charles任意版本的注册码 Charles 4.2.7 目前是最新版,可用。 Registered Name: https://zhile.io License Key: 48891cf209c6d32bf4 Charles破解: 先去官网安装最新的Charles 阅读全文
posted @ 2020-06-12 18:24 八英里 阅读(1042) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-06-12 15:30 八英里 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 今天我在使用postman测试我开发的restful API时,遇到这个错误信息: Self-signed SSL certificates are being blocked: 解决方案选择这个setting菜单: 默认的SSL certificate verification是打开的: 把它关掉 阅读全文
posted @ 2020-06-12 15:26 八英里 阅读(3138) 评论(0) 推荐(0) 编辑
上一页 1 ··· 48 49 50 51 52 53 54 55 56 ··· 76 下一页