gpt4 book ai didi

c - fwrite 不写入整个缓冲区

转载 作者:太空宇宙 更新时间:2023-11-04 01:40:50 26 4
gpt4 key购买 nike

我目前正在制作一个用于简单文件检查的小测试程序。该程序将两个小矩阵(A 和 B)写入文件,关闭并重新打开它们,从文件中读取矩阵,将它们相乘并将结果矩阵(C)写入新文件。然后它关闭并重新打开这个包含答案的文件并打印出来让我检查 IO 操作是否正确进行。

我的问题是结果矩阵的读取方式与预期不同。

我认为自己是 C 和文件输入/输出操作的初学者,这是给我带来麻烦的代码。我正在使用 WinXP、Codeblocks 和 Mingw。

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define bufferA(i,k) (bufferA[i*cols+k])
#define bufferB(k,j) (bufferB[k*cols+j])
#define bufferC(i,j) (bufferC[i*cols+j])

void printMatrix(int *nMatrixToPrint, int nNumberOfElements, int nDimension) {
// This function prints out the element of an Array. This array represents a matrix in memory.

int nIndex;
printf("\n");

for (nIndex = 0; nIndex < nNumberOfElements; nIndex++) {
if (nIndex % nDimension == 0)
printf("\n");
printf("%d,",nMatrixToPrint[nIndex]);
}

return;
}

int main(int argc, char *argv[]) {
int nElements = 16, nDim = 4;
int A[4][4] = {{1,2,3,1},{2,2,1,2},{4,2,3,1},{5,1,1,3}};
int B[4][4] = {{3,2,1,4},{2,2,3,3},{4,1,3,2},{2,2,5,1}};

// Create files of A and B, delete old ones if present
FILE *fpA = fopen("A.dat", "w+");
FILE *fpB = fopen("B.dat", "w+");

// Write data to them
fwrite((int*)A, sizeof(*A), nElements, fpA);
fwrite((int*)B, sizeof(*B), nElements, fpB);

// and close them
fclose(fpA);
fclose(fpB);

// Reopen files
fpA = fopen("A.dat", "r");
fpB = fopen("B.dat", "r");

// Allocate memory
int *bufferA = (int*)malloc(nElements * sizeof(*bufferA));
int *bufferB = (int*)malloc(nElements * sizeof(*bufferB));
int *bufferC = (int*)calloc(nElements, sizeof(*bufferC));

// Read files
fread(bufferA, sizeof(int), nElements, fpA);
fread(bufferB, sizeof(int), nElements, fpB);

printf("\nA");
printMatrix(bufferA, nElements, nDim);
printf("\n\nB");
printMatrix(bufferB, nElements, nDim);

// Matrix multiplication
// Calculate and write to C
int i,j,k = 0; // Loop indices
int n = nDim,l = nDim, m = nDim, cols = nDim;

// multiply
for (i = 0; i < n; i++) { // Columns
for (j = 0; j < m; j++) { // Rows
//C(i,j) = 0;
for (k = 0; k < l; k++) {
bufferC(i,j) += bufferA(i,k) * bufferB(k,j);
}
}
}
printf("\n\nC_buffer");
printMatrix(bufferC, nElements, nDim);

// Create C and write to it
FILE* Cfile = fopen("C.dat", "w");
fwrite(bufferC, sizeof(*bufferC), nElements, Cfile);

// Close files
fclose(fpA);
fclose(fpB);
fclose(Cfile);

// reopen C for reading
Cfile = fopen("C.dat", "r");

// Obtain file size
fseek(Cfile , 0 , SEEK_END);
long lSize = ftell(Cfile);
rewind(Cfile);
printf("\nC file length is: %ld", lSize);

// read data into bufferA
fread(bufferA, sizeof(int), lSize, Cfile);
fclose(Cfile);

printf("\n\nC_file");
printMatrix(bufferA, nElements, nDim);

// Free allocated memory and remove dangling pointers
free(bufferA); bufferA = NULL;
free(bufferB); bufferB = NULL;
free(bufferC); bufferC = NULL;

exit(0);
}

这给了我以下输出:

一个

1,2,3,1,
2,2,1,2,
4,2,3,1,
5,1,1,3,

B

3,2,1,4,
2,2,3,3,
4,1,3,2,
2,2,5,1,

C_缓冲区

21,11,21,17,
18,13,21,18,
30,17,24,29,
27,19,26,28,
C文件长度为:64

C_文件

21,11,21,17,
18,13,21,18,
30,17,24,29,
27,19,1,3,

如您所见,C_file 中的最后两个元素是错误的,而当我将文件内容写入缓冲区 A 时,输出显示的是 A 中的最后两个元素。切换到 bufferB 会将最后两个字符与 B 中的最后一个元素交换,这仍然是错误的。将文件复制到另一个项目将产生最后两个整数,就像该 malloc 地址处的 ram 中的任何东西一样。

我的问题如下:为什么 fwrite 没有将正确的数据写入文件。为什么它管理前 14 个元素而不管理后两个?这与我之前在写入和检索 A 和 B 的元素时正确使用 fwrite 和 fread 有何不同?

最佳答案

您正在写入二进制数据,因此您必须以二进制模式打开文件,默认为文本模式。这在 Windows 上有所不同,但在 *nix 上没有,这解释了为什么它适用于这里的其他人。

所有的fopen调用,在模式参数中包含字母“b”,例如将“w+”替换为“w+b”,将“r”替换为“rb”等等。

关于c - fwrite 不写入整个缓冲区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5766590/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com