CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - fread
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - fread - List
[
File Operate
]
GcfxTest
DL : 0
程序运行过程中,鼠标位置的记录与重演 GetCursorPos/SetCursorPos,fwrite/fread-running process, the position of the mouse and a repeat of the record GetCursorPos / SetCursorPos, fwrite / fread
Date
: 2008-10-13
Size
: 24.84kb
User
:
szh
[
File Operate
]
fstreamsrc
DL : 0
《使用 <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
Date
: 2008-10-13
Size
: 897.87kb
User
:
wwwwppp
[
Other
]
fwrite
DL : 0
文件读写函数fread和fwrite ,文件读写函数功能1-document literacy fread and fwrite function, documents a functional literacy function
Date
: 2008-10-13
Size
: 1.3kb
User
:
ghost2008
[
Linux-Unix
]
IOLoadLib
DL : 0
自己写的一个IO库,模拟了一下fopen,fread,fwrite. -himself wrote an IO of the simulated what fopen, fread and fwrite.
Date
: 2008-10-13
Size
: 7.42kb
User
:
LB
[
Other
]
main
DL : 0
纯真版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信息已经通知原作者并且他已经作了修复
Date
: 2008-10-13
Size
: 2.03kb
User
:
1111
[
Other resource
]
45-70
DL : 0
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 可变数目变元
Date
: 2008-10-13
Size
: 21.81kb
User
:
杨志亮
[
File Operate
]
swfile
DL : 0
比用fread/fwrite的方式速度快了不少的读写文件方式。其中包括了读写文本文件和二进制文件的函数。
Date
: 2008-10-13
Size
: 1.12kb
User
:
song_wing
[
File Operate
]
GcfxTest
DL : 0
程序运行过程中,鼠标位置的记录与重演 GetCursorPos/SetCursorPos,fwrite/fread-running process, the position of the mouse and a repeat of the record GetCursorPos/SetCursorPos, fwrite/fread
Date
: 2025-07-02
Size
: 25kb
User
:
szh
[
File Operate
]
fstreamsrc
DL : 0
《使用 <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
Date
: 2025-07-02
Size
: 898kb
User
:
wwwwppp
[
Linux-Unix
]
IOLoadLib
DL : 0
自己写的一个IO库,模拟了一下fopen,fread,fwrite. -himself wrote an IO of the simulated what fopen, fread and fwrite.
Date
: 2025-07-02
Size
: 7kb
User
:
LB
[
source in ebook
]
45-70
DL : 0
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
Date
: 2025-07-02
Size
: 22kb
User
:
杨志亮
[
ARM-PowerPC-ColdFire-MIPS
]
fat16test
DL : 0
包装了一个开源的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..
Date
: 2025-07-02
Size
: 114kb
User
:
文远
[
Other
]
fwrite
DL : 0
包含fwrite、fread等文件读写操作算法的课程设计报告。-Contains fwrite, fread and other documents to read and write operation algorithm curriculum design report.
Date
: 2025-07-02
Size
: 2kb
User
:
duhongye
[
VC/MFC
]
fread
DL : 0
fread函数的详细用法,以及其实例讲解-fread function, detailed usage, as well as their examples to explain
Date
: 2025-07-02
Size
: 37kb
User
:
asdfasd
[
TreeView
]
fread
DL : 0
FREAD-FREAD
Date
: 2025-07-02
Size
: 1kb
User
:
SB
[
Other
]
fjhnmk
DL : 0
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
Date
: 2025-07-02
Size
: 2kb
User
:
jafar
[
Software Engineering
]
origin
DL : 0
wav的简单读取,fread fseek 等等的简单实现,小程序-wav s simple reading
Date
: 2025-07-02
Size
: 1kb
User
:
tangshaobo
[
Windows Develop
]
Pack
DL : 0
简单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
Date
: 2025-07-02
Size
: 43kb
User
:
haochaoqing
[
Algorithm
]
fread
DL : 0
使用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)
Date
: 2025-07-02
Size
: 1kb
User
:
archdevil
[
File Operate
]
fread-fwrite
DL : 0
C语言fread函数和fwrite函数的用法及其实例 C-C language fread function and usage of the fwrite function and its instance C
Date
: 2025-07-02
Size
: 222kb
User
:
miracle
«
1
2
3
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.