摘要:
转载URL:https://www.w3cmm.com/ajax/progress-events.html MDN参考:https://developer.mozilla.org/zh-CN/docs/Web/API/ProgressEvent 进度事件(Progress Events) Progr 阅读全文
摘要:
// 将list转换成Map类型 Map map = list.stream().collect(Collectors.toMap(Person::getId, Person::getName)); // 如果报 map里的value空指针异常,则需要在value,也就是toMap()的第二个参数进行空(null)值的判断逻辑;例如:也就是 Person::getName 改成 p -> p.... 阅读全文