为什么博文分类以及博文名字叫“20天自制操作系统”呢?因为6月11日到7月还有接近20天的时间,所以我取整,接近20天内学完《30天自制操作系统》作者川合秀实
,译者 周自恒,李黎明,曾箱江,张文旭这本书。PS:从5月20号到6月10日,除了上班之外,下班就是吃喝玩,浪费了特别多的时间。看到BIT祝...
分类:
其他好文 时间:
2014-06-12 23:30:00
阅读次数:
388
一、开辟内存执行的方法流程1.CreateFileMapping
创建一个内存块,指定大小。2.OpenFileMapping打开一个已经存在的内存块做映射。3.MapViewOfFile
获得内存块数据的头指针,需要制定大小。二、操作系统:Windows 7 旗舰版, 32-bit在不同的进程A和...
分类:
其他好文 时间:
2014-06-12 09:14:17
阅读次数:
260
The gray code is a binary numeral system where
two successive values differ in only one bit.Given a non-negative
integernrepresenting the total number...
分类:
其他好文 时间:
2014-06-10 19:38:39
阅读次数:
199
网络速率:用KbpsMbpsGbps或Kb、Mb、Gb等来表示
1Gbps=1000Mbps
1Mbps=1000Kbps
1Kbps=1000bit
数据传输速率:用KBpsMBps或KB、MB、GB等来表示
1GB=1024MB
1MB=1024KB
1KB=1024Byte
1Byte=8bit
1kbps=1000bps
全称:BitsPerSecond
通信线路等数据传送速度的单位。比特每秒。1..
分类:
其他好文 时间:
2014-06-10 18:56:22
阅读次数:
362
流 JAVA /IO 基本小结
通过一行常见的代码讨论:new BufferedReader(new InputStreamReader(System.in))
java的IO是基于流(stream)概念的,什么是流呢,作为初学者,
我是这样理解的,在各个应用之间传送的是BITS,这些BIT可已被认为是流体,可以就认为是水流,那么用来在各个水源之间转移水的工具应该选择什么呢?一般...
分类:
编程语言 时间:
2014-06-10 14:24:53
阅读次数:
262
奇偶校验位是一个表示给定位数的二进制数中1的个数是奇数还是偶数的二进制数。奇偶校验位是最简单的错误检测码。A
parity bit, or check bit is a bit added to the end of a string of binary code
that indicates wh...
分类:
Web程序 时间:
2014-06-10 11:51:03
阅读次数:
288
The oldest solution that people still use for
this problem is select(). The select() call takes three sets of fds (implemented
as bit arrays): one for...
分类:
编程语言 时间:
2014-06-10 08:26:42
阅读次数:
325
zzs@ubuntu:~$ sudo /opt/lampp/lampp
startapache[sudo] password for zzs:XAMPP is currently only availably as 32 bit
application. Please use a 32 bit co...
分类:
其他好文 时间:
2014-06-08 23:04:45
阅读次数:
288
Steps1Check to see if your Ubuntu Linux operating
system architecture is 32-bit or 64-bit, open up a terminal and run the
following command below.Type...
分类:
编程语言 时间:
2014-06-08 19:51:49
阅读次数:
328
问题详细描述:将输入的两个字符串合并。对合并后的字符串进行排序,要求为:下标为奇数的字符和下标为偶数的字符分别从小到大排序。这里的下标意思是字符在字符串中的位置。
对排训后的字符串进行操作,如果字符为‘0’——‘9’或者‘A’——‘F’或者‘a’——‘f’,则对他们所代表的16进制的数进行BIT倒序...
分类:
其他好文 时间:
2014-06-08 19:10:55
阅读次数:
261