Location:
Search - fread
Search list
Description: 程序运行过程中,鼠标位置的记录与重演
GetCursorPos/SetCursorPos,fwrite/fread-running process, the position of the mouse and a repeat of the record GetCursorPos / SetCursorPos, fwrite / fread
Platform: |
Size: 25438 |
Author: szh |
Hits:
Description: 《使用 <fstream> 类进行文件的 I/O 处理》
传统的文件 I/O 库如 Unix 的 <io.h> 和 <stdio.h> ,由于其程序接口的原因,在很大程度上强制程序员进行某些处理,缺乏类型安全和国际化支持。C++ 的 <fstream> 库则在文件的 I/O 方面提供了一个增强的、面向对象的、具有国际化意识的库。该程序介绍如何使用这个库进行文件的 I/O 处理并利用它来编写易于跨平台的代码。
大多数 C++ 程序员都熟悉不止一个文件 I/O 库。首先是传统的 Unix 风格的库,它由一些低级函数如 read() 和 open()组成。其次是 ANSI C 的 <stdio.h> 库,它包含 fopen() 和 fread()等函数。其它的还有一些具备所有权的库或框架,比如 MFC,它有很多自己的文件处理类。
这些库一般都很难跨平台使用。更糟的是,上述提到的 C 库由于其程序接口的原因,在很大程度上强制程序员进行某些处理,而且缺乏类型安全支持。
标准 C++ 提供提供了一个增强的、面向对象的、具有国际化意识的 <fstream> 库。这个库包含一系列派生于标准 ios_base 和 ios 类的类模板。因此, <fstream> 提供了高级的自动控制机制和健壮性。-"use
Platform: |
Size: 919417 |
Author: wwwwppp |
Hits:
Description: 文件读写函数fread和fwrite ,文件读写函数功能1-document literacy fread and fwrite function, documents a functional literacy function
Platform: |
Size: 1329 |
Author: ghost2008 |
Hits:
Description: 自己写的一个IO库,模拟了一下fopen,fread,fwrite. -himself wrote an IO of the simulated what fopen, fread and fwrite.
Platform: |
Size: 7597 |
Author: LB |
Hits:
Description: 纯真版IP数据库查询代码原源代码中有一个错误导致取出的地区信息有误
在readFullAddr函数中
if ( byte == REDIRECT_MODE_2 ) {
int p = 0
fread(&p,1,3,dbfile)
address = readString(p)
fseek(dbfile,p+4,SEEK_SET)
这段中
最后一句fseek(dbfile,p+4,SEEK_SET)
应改为
fseek(dbfile,countryOffset+4,SEEK_SET)
否则取出的区域地址将会是国家地址的略过4个字符后的内容
比如原来应该取出 “中国上海 电信adsl”
现在会变成 “中国上海 上海”
现在发布的是经过我改动后的版本
bug信息已经通知原作者并且他已经作了修复
Platform: |
Size: 2079 |
Author: 1111 |
Hits:
Description: C语言精彩百例第45-70例
第二篇 深入提高篇
实例45 结构体变量
实例46 结构体数组
实例47 结构体指针变量
实例48 结构体指针数组
实例49 共用体变量
实例50 枚举类型
实例51 读写字符
实例52 读写字符串
实例53 格式化输出函数
实例54 格式化输入函数
实例55 打开和关闭文件
实例56 fputc()和fgetc()
实例57 函数rewind()
实例58 fread()和fwrite()
实例59 fprintf()和fscanf()
实例60 随机存取
实例61 错误处理
实例62 综合实例
实例63 动态分配函数
实例64 常用时间函数
实例65 转换函数
实例66 查找函数
实例67 跳转函数
实例68 排序函数
实例69 伪随机数生成
实例70 可变数目变元
Platform: |
Size: 22329 |
Author: 杨志亮 |
Hits:
Description: 比用fread/fwrite的方式速度快了不少的读写文件方式。其中包括了读写文本文件和二进制文件的函数。
Platform: |
Size: 1151 |
Author: song_wing |
Hits:
Description: 程序运行过程中,鼠标位置的记录与重演
GetCursorPos/SetCursorPos,fwrite/fread-running process, the position of the mouse and a repeat of the record GetCursorPos/SetCursorPos, fwrite/fread
Platform: |
Size: 25600 |
Author: szh |
Hits:
Description: 《使用 <fstream> 类进行文件的 I/O 处理》
传统的文件 I/O 库如 Unix 的 <io.h> 和 <stdio.h> ,由于其程序接口的原因,在很大程度上强制程序员进行某些处理,缺乏类型安全和国际化支持。C++ 的 <fstream> 库则在文件的 I/O 方面提供了一个增强的、面向对象的、具有国际化意识的库。该程序介绍如何使用这个库进行文件的 I/O 处理并利用它来编写易于跨平台的代码。
大多数 C++ 程序员都熟悉不止一个文件 I/O 库。首先是传统的 Unix 风格的库,它由一些低级函数如 read() 和 open()组成。其次是 ANSI C 的 <stdio.h> 库,它包含 fopen() 和 fread()等函数。其它的还有一些具备所有权的库或框架,比如 MFC,它有很多自己的文件处理类。
这些库一般都很难跨平台使用。更糟的是,上述提到的 C 库由于其程序接口的原因,在很大程度上强制程序员进行某些处理,而且缺乏类型安全支持。
标准 C++ 提供提供了一个增强的、面向对象的、具有国际化意识的 <fstream> 库。这个库包含一系列派生于标准 ios_base 和 ios 类的类模板。因此, <fstream> 提供了高级的自动控制机制和健壮性。-"use
Platform: |
Size: 919552 |
Author: wwwwppp |
Hits:
Description: 自己写的一个IO库,模拟了一下fopen,fread,fwrite. -himself wrote an IO of the simulated what fopen, fread and fwrite.
Platform: |
Size: 7168 |
Author: LB |
Hits:
Description: C语言精彩百例第45-70例
第二篇 深入提高篇
实例45 结构体变量
实例46 结构体数组
实例47 结构体指针变量
实例48 结构体指针数组
实例49 共用体变量
实例50 枚举类型
实例51 读写字符
实例52 读写字符串
实例53 格式化输出函数
实例54 格式化输入函数
实例55 打开和关闭文件
实例56 fputc()和fgetc()
实例57 函数rewind()
实例58 fread()和fwrite()
实例59 fprintf()和fscanf()
实例60 随机存取
实例61 错误处理
实例62 综合实例
实例63 动态分配函数
实例64 常用时间函数
实例65 转换函数
实例66 查找函数
实例67 跳转函数
实例68 排序函数
实例69 伪随机数生成
实例70 可变数目变元-err
Platform: |
Size: 22528 |
Author: 杨志亮 |
Hits:
Description: 包装了一个开源的FAT16文件系统,可以用在单片机上,并且做了一个封皮,使得开发者能以标准I/O函数的形式使用它,如fopen, fread, fwrite等。-An open source packaging FAT16 file system, can be used in single-chip, and is to do a cover, making the developer to the standard I/O function of the form to use it, such as fopen, fread, fwrite, etc..
Platform: |
Size: 116736 |
Author: 文远 |
Hits:
Description: 包含fwrite、fread等文件读写操作算法的课程设计报告。-Contains fwrite, fread and other documents to read and write operation algorithm curriculum design report.
Platform: |
Size: 2048 |
Author: duhongye |
Hits:
Description: fread函数的详细用法,以及其实例讲解-fread function, detailed usage, as well as their examples to explain
Platform: |
Size: 37888 |
Author: asdfasd |
Hits:
Description: FREAD-FREAD
Platform: |
Size: 1024 |
Author: SB |
Hits:
Description: function matrix=asciiRead(fileName)
asciiRead: Read an ascii file into a matrix
Usage: matrix=asciiRead(fileName)
Roger Jang, 20041021
if nargin<1, selfdemo return end
fid=fopen(fileName, rb )
content=fread(fid, inf, char )
fclose(fid)
file=tempname
copyfile(fileName, file-function matrix=asciiRead(fileName)
asciiRead: Read an ascii file into a matrix
Usage: matrix=asciiRead(fileName)
Roger Jang, 20041021
if nargin<1, selfdemo return end
fid=fopen(fileName, rb )
content=fread(fid, inf, char )
fclose(fid)
file=tempname
copyfile(fileName, file
Platform: |
Size: 2048 |
Author: jafar |
Hits:
Description: wav的简单读取,fread fseek 等等的简单实现,小程序-wav s simple reading
Platform: |
Size: 1024 |
Author: tangshaobo |
Hits:
Description: 简单C函数实现的打包解包小工具:基本上只用C语言文件操作函数fopen,fread fwrite等实现的打包小工具-Simple C functions is packaged unpack Gadgets: Basically, only C language file manipulation functions fopen, fread fwrite, etc. to achieve the packaging Gadgets
Platform: |
Size: 44032 |
Author: haochaoqing |
Hits:
Description: 使用fread函数读取整形数字,在巨大量的输入下,速度优势十分明显(相比cin和scanf)-Use the fread function to read plastic figures, a huge amount of input, the speed advantage is very clear (compared to the cin and scanf)
Platform: |
Size: 1024 |
Author: archdevil |
Hits:
Description: C语言fread函数和fwrite函数的用法及其实例
C-C language fread function and usage of the fwrite function and its instance C
Platform: |
Size: 227328 |
Author: miracle |
Hits: