搜索结果
找到约 116 项符合
reading 的查询结果
按分类筛选
- 全部分类
- 其他书籍 (12)
- 其他 (7)
- Linux/Unix编程 (6)
- 单片机开发 (6)
- 电子书籍 (6)
- 嵌入式/单片机编程 (6)
- 汇编语言 (5)
- Java书籍 (5)
- 书籍 (5)
- 单片机编程 (4)
- Java编程 (4)
- 软件设计/软件工程 (3)
- 技术资料 (3)
- VIP专区 (3)
- 模拟电子 (2)
- matlab例程 (2)
- VHDL/FPGA/Verilog (2)
- VC书籍 (2)
- 数据结构 (2)
- 软件工程 (2)
- J2ME (2)
- 其他嵌入式/单片机内容 (2)
- 多媒体处理 (2)
- 学术论文 (1)
- 手机短信编程 (1)
- 书籍源码 (1)
- 人工智能/神经网络 (1)
- Delphi/CppBuilder (1)
- Delphi控件源码 (1)
- 中间件编程 (1)
- 技术管理 (1)
- 生物技术 (1)
- 操作系统开发 (1)
- Windows CE (1)
- FlashMX/Flex源码 (1)
- 压缩解压 (1)
- 其他行业 (1)
- 嵌入式Linux (1)
- 驱动编程 (1)
- 文章/文档 (1)
- 编译器/解释器 (1)
- Internet/网络编程 (1)
- 能源行业(电力石油煤炭) (1)
- GPS编程 (1)
- 技术书籍 (1)
- 源码 (1)
Java书籍 All of Java s Input/Output (I/O) facilities are based on streams, which provide simple ways to read
All of Java s Input/Output (I/O) facilities are based on streams, which provide simple ways to read and write data of different types. Java provides many different kinds of streams, each with its own application. The universe of streams is divided into four large categories: input streams and output ...
Java书籍 Start it with this document[13 pages only] if you want to develop some good web application using Ja
Start it with this document[13 pages only] if you want to develop some good web application using Java instead of reading large books.
This document prepared by myself. Clearly explains what is JDBC. and how you can connect to a particular database through JSP and Servlets. Examples are given.
Linux/Unix编程 //结构 struct fb_fix_screeninfo finfo struct fb_var_screeninfo vinfo //打开设备 fd = open[
//结构
struct fb_fix_screeninfo finfo
struct fb_var_screeninfo vinfo
//打开设备
fd = open["/dev/fb0", O_RDWR]
if [!fd] {
printf["Cannot open framebuffer device.\n"]
exit[1]
}
//取得固定信息
if [ioctl[fd, FBIOGET_FSCREENINFO, &finfo]] {
printf["Error reading fixed info ...
其他书籍 Builder uses to integrate a larger system module. Each component consists of a structured set of fi
Builder uses to integrate a larger system module. Each component
consists of a structured set of files within a directory.
The files in a component directory serve the following
The RS232 UART Core implements a method for communication of serial data. The core provides
a simple register-mapped Avalo ...
其他 Write a program to decide if a graph has a cycle or not. The given graph can be a directed or undire
Write a program to decide if a graph has a cycle or not. The given graph can be a directed or undirected graph, which is indicated at the time of reading the input (0 for directed graph and 1 for undirected graphs). The input is given as an adjacency list.
编译器/解释器 how to add arrays * Use of const (constant) values. * Creation of vectors. * Passing
how to add arrays
* Use of const (constant) values.
* Creation of vectors.
* Passing vectors as function arguments.
* Reading from files of unknown size (monitoring istream status).
* Repetitive structures (while and for loops).
* The increment operators (++).
* Selection ...
嵌入式/单片机编程 This file contains example code to print over the serial port of the P87C591 MCU and Evaultion Board
This file contains example code to print over the serial port of the P87C591 MCU and Evaultion Board (EVAL-P87C591QS).
This example will test the I2C function of the P87C591.
This will be done by writing and reading from a serial A/D & D/A (P8591).
嵌入式/单片机编程 PC Host used for controlling and command exchanging to the SPI flash memory controller which enables
PC Host used for controlling and command exchanging to the SPI flash memory controller which enables reading, writing and bulk erasing of SPI flash memories such as ST25p16 and 25p32 used on the WGT624V3 Netgear s router.
电子书籍 You may read code because you have to-to fix it, inspect it, or improve it. You may read code the wa
You may read code because you have to-to fix it, inspect it, or improve it. You may read code the way an engineer examines a machine--to discover what makes it tick. Or you may read code because you are scavenging--looking for material to reuse.
Code-reading requires its own set of skills, and the ...
其他 WordCloud is a visual depiction of how many times a word is used, or its frequency if you will, with
WordCloud is a visual depiction of how many times a word is used, or its frequency if you will, within a given set of words. It does this by: reading in plain text, filtering out "stop words", counting how many times a word is used, and displaying results in a Squarified Treemap.