Features 256 bits EEPROM memory organized in 8
pages of 32 bits each 32 bits unique factory programmed serial number Typical
operating frequency : ...
分类:
其他好文 时间:
2014-05-26 13:32:43
阅读次数:
287
IOzone是一个文件系统测试基准工具。可以测试不同的操作系统中文件系统的读写性能。可以通过
write, re-write, read, re-read, random read, random write, random mix, backwards
read, record rewirte, ...
分类:
其他好文 时间:
2014-05-26 13:15:14
阅读次数:
298
Balancing CPU and I/O throughput is essential
to achieve good overall performance and to maximize hardware utilization. SQL
Server includes two asynch...
分类:
数据库 时间:
2014-05-26 12:20:40
阅读次数:
386
Help Me with the GameTime Limit: 1000MSMemory
Limit: 65536KTotal Submissions: 3175Accepted: 2053DescriptionYour task is to
read a picture of a chessbo...
分类:
其他好文 时间:
2014-05-26 10:28:59
阅读次数:
618
I/O是input/output的缩写,即输入输出端口。从 文件、键盘、网络
等输入到java程序,再从java程序输出到 文件、显示器、网络等分类:1、输入流 和 输出流2、字节流 和 字符流3、节点流 和
处理流核心方法:read、write字节流例子:文件读取//导入io包import jav...
分类:
编程语言 时间:
2014-05-26 02:16:11
阅读次数:
313
字节流InputStream和OutputStream的子类:FileInputStream
和FileOutputStream方法:int read(byte[] b,int off,int len);void write(byte[] b,int
off,int len);字符流Reader和W...
分类:
编程语言 时间:
2014-05-26 01:00:09
阅读次数:
378
TI C66x DSP有两种总线,数据总线与配置总线。一些外设有数据与配置总线,然而其他的仅有一种总线接口。总线接口宽度与速度各个外设不一样。配置总线主要用于访问外设的寄存器空间,数据总线主要用于数据的传输。
CPU,EDMA TC,外设等分为两类:master与slave。masters用于发起read与write操作,不依赖于EDMA传输;slaves依赖于master发起的read与wri...
分类:
其他好文 时间:
2014-05-25 10:11:50
阅读次数:
294
25.Collections类:
Collections类是一个工具类,用来对集合进行操作,它主要是提供一些排序算法,包括随机排序、反相排序等。
Collections类提供了一些静态方法,实现了基于List容器的一些常用算法。
Collections的一些方法列表:
· void sort(List): 对List内的元素进行排序。
· void shuffle(List):...
分类:
编程语言 时间:
2014-05-25 01:47:51
阅读次数:
319
socket模型:
1、阻塞模型
一个单进程accept阻塞,接收到客户端请求后,read消息,处理write返回,然后循环继续accept。
这种模型最最简单,不实际,没什么实际用途,对于新手教学还行。
2、多进程(线程)模型
主进程循环accept阻塞,接收到客户端请求后,fork子进程处理,子进程read阻塞,接收客户端消息并响应。
这种模型是我使用到...
分类:
其他好文 时间:
2014-05-24 19:50:08
阅读次数:
274
public Image GetImage(string path) { FileStream fs
= new FileStream(path, FileMode.Open, FileAccess.Read); Image ...
分类:
其他好文 时间:
2014-05-24 09:48:26
阅读次数:
233