同步任务(synchronous):在主线程上排队执行的任务,只有前一个任务执行完毕,才能执行后一个任务异步任务(asynchronous):不进入主线程、而进入"任务队列"(task queue)的任务,只有等主线程任务执行完毕,"任务队列"开始通知主线程,请求执行任务,该任务才会进入主线程执行注 ...
分类:
其他好文 时间:
2018-08-17 01:21:17
阅读次数:
132
html5开发的仿微博、微信聊天web端案例,h5仿微信聊天网页版,采用html5+css3+jquery+swiper+wcPop等技术进行布控架构开发,弹窗插件wcPop.js进行了一次全面api升级,修复编辑器插入表情时光标定位错误bug,新增了上传附件及自定义推送内容,另外也新增了个人名片、 ...
分类:
微信 时间:
2018-08-17 01:21:04
阅读次数:
502
$array[$j]){ $temp = $array[$i]; $array[$i] = $array[$j]; $array[$j] = $temp; } } } return $ar... ...
分类:
编程语言 时间:
2018-08-17 01:20:52
阅读次数:
168
显式Intent穿梭activities 除四大组件外,用getContext传递(getContext为获取上下文) ...
分类:
移动开发 时间:
2018-08-17 01:20:46
阅读次数:
180
java高并发主要有三块知识点: synchronizer:同步器,在多个线程之间互相之间怎么进行通讯,同步等; 同步容器:jdk提供了同步性的容器,比如concurrentMap,concurrentList,BlockQueen等; ThreadPool:线程池,executor,java在前两 ...
分类:
编程语言 时间:
2018-08-17 01:20:35
阅读次数:
288
JavaScript 中常见设计模式 单例模式 策略模式 代理模式 迭代器模式 发布订阅模式 命令模式 组合模式 模板方法模式 享元模式 职责链模式 中介者模式 装饰者模式 状态模式 适配器模式 各设计模式关键词 看完了上述设计模式后,把它们的关键词特点罗列出来,以后提到某种设计模式,进而联想相应的 ...
分类:
Web程序 时间:
2018-08-17 01:20:28
阅读次数:
228
Task schedule https://leetcode.com/problems/task-scheduler/solution/ https://github.com/tongzhang1994/Facebook-Interview-Coding/blob/master/Task%20sch... ...
分类:
其他好文 时间:
2018-08-17 01:20:10
阅读次数:
191
notepad++中有中文内容时,cmd运行时中文显示乱码,如何处理? 设置-->首选项-->新建-->选择ANSI编码(注意现在的文件不会被转换,要重新把代码拷入修建的文件中才可以正常显示) ...
分类:
其他好文 时间:
2018-08-17 01:20:01
阅读次数:
519
Print All Paths in a 2D Board public class Solution { private int m; private int n; public void printAllPath(char[][] grid) { int count=0; m=grid.leng... ...
分类:
其他好文 时间:
2018-08-17 01:19:53
阅读次数:
145
import re # line = 'ahhuuhhaaahhhhang123' #line = 'ahuuuhuuu' # 需要获取h和h之间,需要包含特定数量字符的子串 # 使用 + h和h之间至少要有一个字符 # {} 限定它前面出现的那个东西的出现次数 # match_res = re.s... ...
分类:
其他好文 时间:
2018-08-17 01:19:44
阅读次数:
122
3、查看页面数据展示 如何让不同的model展示不同的页面 1、知识点 2、显示数据代码 3、不同model展示不同的编辑按钮 1、知识点 1)函数与实例方法的区别 2) mark_safe 传输 https://www.cnblogs.com/yuanchenqi/articles/7629939 ...
分类:
其他好文 时间:
2018-08-17 01:19:36
阅读次数:
301
157. Read N Characters Given Read4 The API: int read4(char *buf) reads 4 characters at a time from a file. The return value is the actual number of ch... ...
分类:
其他好文 时间:
2018-08-17 01:19:26
阅读次数:
137
158. Read N Characters Given Read4 II - Call multiple times Given buf = "abc" read("abc", 1) // returns "a" read("abc", 2); // returns "bc" read("abc"... ...
分类:
其他好文 时间:
2018-08-17 01:19:18
阅读次数:
121
可以利用 MessageRPC + ShareMemory 来实现 分布式并行计算 。 MessageRPC : https://www.cnblogs.com/KSongKing/p/9455417.html ShareMemory : https://www.cnblogs.com/KSongK ...
分类:
其他好文 时间:
2018-08-17 01:19:11
阅读次数:
129
ord() : 将字符转为 ascii 码 (0-256),准确定义官方文档:http://php.net/manual/en/function.ord.php chr() : 将 ascii 码转为字符,与 ord() 相反 不过这两个方法都有限制,只能处理 ascii 码, 如果需要处理的字符串 ...
分类:
Web程序 时间:
2018-08-17 01:19:03
阅读次数:
1337
Sparse vector Multiplication https://github.com/tongzhang1994/Facebook-Interview-Coding/blob/master/Sparce%20Matrix%20Multiplication.java public class... ...
分类:
其他好文 时间:
2018-08-17 01:18:42
阅读次数:
212