打赏
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 60 下一页
摘要: https://www.cnblogs.com/Herzog3/p/6203102.html 恐怕比较一下volatile和synchronized的不同是最容易解释清楚的。volatile是变量修饰符,而synchronized则作用于一段代码或方法;看如下三句get代码: int i1; int 阅读全文
posted @ 2019-10-13 16:12 刘奇云 阅读(1645) 评论(0) 推荐(0) 编辑
摘要: 在研究react和webpack的时候,经常看到在js文件中出现require,还有import,这两个都是为了JS模块化编程使用。CSS的是@import 1.ES6 模块的设计思想,是尽量的静态化,使得编译时就能确定模块的依赖关系,以及输入和输出的变量。 Require是CommonJS的语法, 阅读全文
posted @ 2019-10-10 14:57 刘奇云 阅读(313) 评论(0) 推荐(0) 编辑
摘要: var dtNow = new Date(); var year = dtNow.getFullYear(); var month = ('0' + (dtNow.getMonth() + 1)).slice(-2); var date = ('0' + dtNow.getDate()).slice(-2); var hour = ('0' + dtNow.getHours()).slice(-2 阅读全文
posted @ 2019-09-24 10:42 刘奇云 阅读(289) 评论(0) 推荐(0) 编辑
摘要: (function () { var docEl = document.documentElement, resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize', recalc = function () { var clientWidth = docEl.clientWidth; //这里是假设在640 阅读全文
posted @ 2019-09-20 09:34 刘奇云 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 工具 —> 选项 —> 环境 —> 字体和颜色 —> 纯文本(显示项中) —> 项目背景 —> 自定义—> 色调位85、饱和度123、亮度205,保存即可。测试了一下VS2010同样试用,估计其他版本的也都是一样的设置方法。 阅读全文
posted @ 2019-09-06 13:36 刘奇云 阅读(2865) 评论(0) 推荐(1) 编辑
摘要: 参考:https://blog.csdn.net/dan15188387481/article/details/49873923 阅读全文
posted @ 2019-09-02 12:31 刘奇云 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/xianhaiyan/p/4533483.html 阅读全文
posted @ 2019-08-29 17:34 刘奇云 阅读(139) 评论(0) 推荐(0) 编辑
摘要: https://www.visualsvn.com/visualsvn/download/ 阅读全文
posted @ 2019-08-28 09:20 刘奇云 阅读(274) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_38756992/article/details/84929787 https://www.cnblogs.com/joyny/p/10991194.html root密码问题: https://www.cnblogs.com/halberd-lee 阅读全文
posted @ 2019-07-04 11:19 刘奇云 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 也可以用扩展运算符...来将一个对象展开。 最终组合成的对象是 {a: 1, b: 2, c: 3, d: 4, e: 5}。 https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/Spread_syn 阅读全文
posted @ 2019-07-02 15:02 刘奇云 阅读(219) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 60 下一页