线程的生命周期分为:新建(New)、就绪(Runnable)、运行(Running)、阻塞(Blocked)、死亡(Dead)五个阶段。 线程启动后,随着CPU的调度,线程会在运行和阻塞两种状态间切换。 新建:使用new关键字创建一个线程后,线程就处于新建状态; 就绪:线程对象调用start方法后,...
分类:
编程语言 时间:
2014-11-15 23:07:07
阅读次数:
296
一:throws 和 trycatch 区别
(1)例如,publicFileWriter(String fileName) throws IOException{}
我在mian中创建一个FileWrite对象
importjava.io.*;
publicclass ShengmingThrows {
public static void main(String...
分类:
编程语言 时间:
2014-11-15 11:28:27
阅读次数:
173
clojure实现生存游戏 ======== 游戏规则: > The game of life is a cellular automaton devised by mathematician John Conway. > The ‘board‘ consists of both live (#) and dead ( ) cells. Each cell inter...
分类:
其他好文 时间:
2014-11-14 18:10:06
阅读次数:
148
设有两个无头结点的单链表,头指针分别为ha,hb,链中有数据域data,链域next,两链表的数据都按递增序存放,现要求将hb表归到ha表中,且归并后ha仍递增序,归并中ha表中已有的数据若hb中也有,则hb中的数据不归并到ha中,hb的链表在算法中不允许破坏。
#include /// no have dead node ha and hb >>ha
#include
typedef...
分类:
其他好文 时间:
2014-11-14 00:14:05
阅读次数:
375
1,购买了一个新的显示器
趁着双11的时候价格便宜,入手了一个显示器。
http://serve.netsh.org/pub/dead_pixel.bin
滚动下就可以换颜色了。把chrome最大化,简单测试了下,没有亮点坏点。
2,双显示器
程序开发还是有两个屏幕效率比较高。
如果是3个屏幕的话,比较不容易找到鼠标,还是两个好。
尤其是写程序,看代码,可以显示更多内容。...
分类:
Web程序 时间:
2014-11-13 16:47:26
阅读次数:
200
Thank you "kali75" for your time.Although the links didn't work for me because the "link to the patch file" was dead.However after this I googled an.....
分类:
其他好文 时间:
2014-10-28 21:19:01
阅读次数:
215
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1074题目大意:有N个作业(N>sub[i]>>dead[i]>>cost[i]; for(int i=1;i=0;j--) { int ...
分类:
其他好文 时间:
2014-10-24 18:19:11
阅读次数:
170
针对新板调试,不针对EVM板。
TI XDS560连上DM8168 20pin仿真接口
launch 8168.ccxml,右击CortexA8,选择Connect Target
出现错误如下:
“Error connecting to the target: (Error -181 @ 0x0)
The controller has detected a dead JTAG cloc...
分类:
其他好文 时间:
2014-10-22 15:55:41
阅读次数:
266
GIL 与 Python 线程的纠葛GIL 是什么东西?它对我们的 python 程序会产生什么样的影响?我们先来看一个问题。运行下面这段 python 程序,CPU 占用率是多少?# 请勿在工作中模仿,危险:)def dead_loop(): while True: passd...
分类:
编程语言 时间:
2014-10-18 22:09:22
阅读次数:
327
一、coroutine.create创建协程
参数是协程的主函数,返回一个thread对象
co = coroutine.create(function()
print("coroutine execute!")
end)
二 协程状态
协程有4种状态:挂起(suspended)、运行(running)、死亡(dead)和正常(normal)
coroutine.status(co)...
分类:
其他好文 时间:
2014-10-08 17:13:35
阅读次数:
290