上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 33 下一页
摘要: Q: 什么是内存泄露? A:已经不再使用的内存未能被程序释放,叫内存泄露(memory leak)。 Q: 什么情况下出现内存泄漏? 首先了解一下【垃圾回收】:垃圾回收(英语:Garbage Collection,缩写为GC)在计算器科学中是一种自动的存储器管理机制。当一个计算机上的动态存储器不再需 阅读全文
posted @ 2019-08-23 16:08 刘金宇 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1、DataType Assert 数据类型断言 一、typeof : 判断变量的类型 ,返回字符串 typeof a 返回 'undefined' 、'boolean' 、'string' 、'number' 、 'object' 、'function' 二、instanceof: 双目运算符,检 阅读全文
posted @ 2019-08-22 17:40 刘金宇 阅读(107) 评论(0) 推荐(0) 编辑
摘要: typeof, instanceof , isPrototypeOf, 阅读全文
posted @ 2019-08-22 16:22 刘金宇 阅读(202) 评论(0) 推荐(0) 编辑
摘要: typeof, isPrototypeOf, 阅读全文
posted @ 2019-08-22 16:20 刘金宇 阅读(120) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/raind/p/10771778.html Access-Control-Allow-Origin。HTTP响应头,指定服务器端允许进行跨域资源访问的来源域。可以用通配符*表示允许任何域的JavaScript访问资源,但是在响应一个携带身份信息(Cre 阅读全文
posted @ 2019-08-22 15:40 刘金宇 阅读(1787) 评论(0) 推荐(0) 编辑
摘要: Echars vue封装 ,曲线图 阅读全文
posted @ 2019-08-02 20:44 刘金宇 阅读(620) 评论(0) 推荐(0) 编辑
摘要: https://github.com/mqyqingfeng/Blog/issues/17 https://www.cnblogs.com/guaidianqiao/category/1106461.html 阅读全文
posted @ 2019-07-30 19:30 刘金宇 阅读(500) 评论(0) 推荐(0) 编辑
摘要: 作用域 作用域是指程序源代码中定义变量的区域。 作用域规定了如何查找变量,也就是确定当前执行代码对变量的访问权限。 JavaScript 采用词法作用域(lexical scoping),也就是静态作用域。 静态作用域与动态作用域 因为 JavaScript 采用的是词法作用域,函数的作用域在函数定 阅读全文
posted @ 2019-07-29 20:48 刘金宇 阅读(706) 评论(0) 推荐(0) 编辑
摘要: window属性:devicePixelRatio 设备像素比 https://www.w3cschool.cn/fetch_api/fetch_api-atvq2nma.html devicePixelRatio属性示例 一个 canvas 在视网膜屏幕上可能显得太模糊。使用 window.dev 阅读全文
posted @ 2019-07-17 16:43 刘金宇 阅读(830) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qwertyupoiuytr/article/details/71213463 SSH建立连接的过程主要分为下面几个阶段: SSH协议版本协商阶段。SSH目前包括SSH1和SSH2两个大版本。密钥和算法协商阶段,SSH支持多种加密算法,双方根据自己和对端支 阅读全文
posted @ 2019-07-12 10:26 刘金宇 阅读(2992) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 33 下一页