当我在玩一些在线站点提供的代码时,我遇到了一个我从未预料到的奇怪故障:一个变量在没有任何手动赋值的情况下突然改变了它的值。
这是下面的代码:
int rc = fwrite(conn->db, sizeof(struct Database), 1, conn->file);
printf("rc is equal to %d\n", rc); // should print out 1
if (rc != 1) die("Failed to write Database.");
rc = fflush(conn->file);
printf("rc is equal to %d\n", rc); // should print out 0
if (rc == -1); die("Cannot flush database"); // error handling
// error comes up because rc suddenly changes to -1
我不明白它是如何发生的,但想知道为什么一个变量在 C 中不应该发生变化时突然发生变化。
代码来源: http ://c.learncodethehardway.org/book/learn-c-the-hard-waych18.html (Database_write下的堆栈和内存)
顺便说一句,我在 Mac osx 10.6 雪豹上的终端中使用 vim。