题目描述: Grading hundreds of thousands of Graduate Entrance Exams is a hard work. It is even harder to design a process to make the results as fair as po...
分类:
其他好文 时间:
2014-07-19 19:09:03
阅读次数:
282
进程(process)和线程(thread)是操作系统的基本概念,但是它们比较抽象,不容易掌握。最近,我读到一篇材料,发现有一个很好的类比,可以把它们解释地清晰易懂。1.计算机的核心是CPU,它承担了所有的计算任务。它就像一座工厂,时刻在运行。2.假定工厂的电力有限,一次只能供给一个车间使用。也就是...
分类:
编程语言 时间:
2014-07-19 14:24:11
阅读次数:
157
Using cron seems
to add another entry point into your application, while Quartz would
integrate into it. So you would be forced to deal with some inter-process communication if you wanted to pass...
分类:
其他好文 时间:
2014-07-19 11:11:44
阅读次数:
373
一句话搞定了,经常看到一些程序在保存为一个txt,或者excel的文件的时候,保存完毕立即打开,其实C#有一个函数可以实现答案:参数输入文件的绝对路径///上面是保存文件的代码System.Diagnostics.Process.Start(System.IO.Path.Combine(AppDom...
分类:
其他好文 时间:
2014-07-18 19:35:00
阅读次数:
219
背景:假说有两个Activity, Activity1和Activity2, 1跳转到2,如果要在2退出程序,一般网上比较常见的说法是用System.exit(0)或是android.os.Process.killProcess(android.os.Process.myPid())但实际应用中,并...
分类:
移动开发 时间:
2014-07-18 18:38:41
阅读次数:
201
【boxing & unboxing】 Boxing is the process of converting avalue typeto the typeobjector to any interface type implemented by this value type.When the ....
分类:
其他好文 时间:
2014-07-18 17:24:23
阅读次数:
240
1、在jsp页中放置一个checkbox控件//该checkbox放在循环体中,其中value必须获取主键的值。这样就可以有多个name值相同,value值不同的checkbox控件。提交时传过来的是字符串数组。2、接收的Servlet中进行处理private void process(HttpSe...
分类:
Web程序 时间:
2014-07-18 09:00:26
阅读次数:
198
1.pthread_create function creates thread that share the same memory with the process.2.pthread_join function wait for threads until they stop3.The pth...
分类:
系统相关 时间:
2014-07-18 00:19:54
阅读次数:
317
psutil - A cross-platform process and system utilities module for Python1. 安装pip 安装即可。windows 下需要安装 vs2008,否则报错:Unable to find vcvarsall.bat如果已经安装 vs2...
Run Length Encoding(RLE) is a simple form of compression. RLE consists of the process for searching for a repeated runs of a single character in a str...
分类:
其他好文 时间:
2014-07-17 14:02:18
阅读次数:
252