float data[10]; fwrite(&data[2], sizeof(data[0]), 4, fp);
(2)讀或寫一個結構體數組
struct { short count; long total; char name[NAMESIZE]; } item; fwrite(&item, sizeof(item), 1, fp);
#include <unistd.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <assert.h> #define BUFSIZE 1 //#define BUFSIZE 8 //#define BUFSIZE 64 //#define BUFSIZE 256 //#define BUFSIZE 1024 //#define BUFSIZE 4096 //#define BUFSIZE 9182 int main(int argc, char* argv[]) { char buf[BUFSIZE]; int nbytes = 0; /* unix read version */ /* while ((nbytes = read(STDIN_FILENO, buf, BUFSIZE)) > 0) { if (write(STDOUT_FILENO, buf, nbytes) != nbytes) { fprintf(stderr, "write error\n"); } } if (nbytes< 0) { fprintf(stderr, "read error\n"); } */ /* std c I/O version */ int c; while ((c = fgetc(stdin)) != EOF) { if (fputc(c, stdout) == EOF) { fprintf(stderr, "fputc error\n"); } } if (ferror(stdin)) { fprintf(stderr, "fgetc error\n"); } return 0; }
咱們查看程序的測試文本: stat test.txt函數
得知:該測試文件爲 259,546,640Byte, I/O塊大小爲 4096字節性能
BUFSIZE | 用戶CPU時間 | 系統CPU時間 | 時鐘時間 | 系統調用數 |
1 | 30.302 | 555.702 | 588.962 | 259,546,640 |
8 | 3.672 | 71.468 | 75.741 | 32,443,330 |
64 | 0.460 | 9.165 | 9.877 | 4,055,417 |
256 | 0.108 | 2.600 | 3.011 | 1,013,854 |
1024 | 0.052 | 1.020 | 1.889 | 253,464 |
4096 | 0.016 | 0.512 | 1.649 | 63,366 |
9182 | 0.000 | 0.596 | 1.735 | 31,683 |
fgetc fputc | 7.604 | 0.380 | 8.001 |
(1) BUFSIZE直接決定了 系統調用數,因此使用unix I/O的關鍵在於選取最合適的緩衝區長度測試
(2)當BUFSIZE等於 文件 I/O塊大小時,系統CPU時間出現最小值,繼續增長緩衝區長度對此時間幾乎沒有影響spa
(3)fgetc fputc標準I/O自行管理緩衝區,可是其時間都大於 unix I/O最佳緩衝區時的時間值,使用標準I/O庫時,系統會自動選取一個最佳I/O長度unix
通常依據文件的I/O塊大小值,可是由於標準I/O的內部緩衝 和 unix I/O最佳緩衝區長度相等時,標準I/O庫中有一個 外存文件==> FILE內部緩衝 ==> 應用緩衝,指針
而Unix I/O 是直接 外存文件 ==> 應用緩衝, 二者雖然系統調用數相同,可是 標準I/O多了緩衝的操做,因此效率較低code