当Promise 被 reject 且没有 reject 处理器的时候,会触发 unhandledrejection 事件; // 未处理 rejection new Promise((resolve, reject) => { setTimeout(() => reject('woops'), 5 ...
分类:
其他好文 时间:
2021-03-18 14:44:10
阅读次数:
0
IDEA中如何实现Hello,world! IDE是什么? 集成开发环境(IDE,Integrated Development Environment ) IDEA是什么? IDEA 全称 IntelliJ IDEA,是java编程语言开发的集成环境。 运行IDEA,点击New Project(新建 ...
分类:
其他好文 时间:
2021-03-18 14:43:51
阅读次数:
0
jsdom 中文文档: https://segmentfault.com/a/1190000014844043 英文文档:https://www.w3school.com.cn/js/js_htmldom_elements.asp jsdom是一个纯粹由 javascript 实现的一系列 web标 ...
分类:
Web程序 时间:
2021-03-18 14:38:23
阅读次数:
0
The USB-Link 2, the next generation vehicle interface from NEXIQ Technologies, has arrived. Dependable and rugged at Autonumen.com, the new USB-Link 2 ...
分类:
其他好文 时间:
2021-03-18 14:37:53
阅读次数:
0
Given a non-negative integer, you could swap two digits at most once to get the maximum valued number. Return the maximum valued number you could get. ...
分类:
其他好文 时间:
2021-03-18 14:32:17
阅读次数:
0
wx.cloud.uploadFile({ cloudPath:new Date().getTime()+'.png', // 上传至云端的文件名称 filePath: fileURL, // fileURL为小程序临时文件路径 success: res => { // 返回文件 ID consol ...
分类:
微信 时间:
2021-03-18 14:13:08
阅读次数:
0
前言 接上文,复习整理大数据相关知识点,这章节从MapReduce开始... MapReduce介绍 MapReduce思想在生活中处处可见。或多或少都曾接触过这种思想。MapReduce的思想核心是“分而治之”,适用于大量复杂的任务处理场景(大规模数据处理场景)。 Map负责“分”,即把复杂的任务 ...
分类:
其他好文 时间:
2021-03-17 15:09:28
阅读次数:
0
list 去重扩展: public static IEnumerable<TSource> DistinctBy<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> keySelector) { HashSet<T ...
实现类: public class LinkedList { /* * 回文链表 * 检查链表是否回文 */ public static void main(String[] args) { Linknode node = new Linknode(1); node.next = new Linkn ...
分类:
其他好文 时间:
2021-03-17 15:02:32
阅读次数:
0
两个: new String()和abc new出来的对象都存放在堆中 String str = "abc"是创建了一个对象 String str1 = "abc"; String str2 = "ab" + "c"; str1==str2是true 因为String str2 = "ab" + " ...
分类:
其他好文 时间:
2021-03-17 14:59:15
阅读次数:
0