1

我遇到了一个奇怪的行为。在调试时,当while第一次循环循环时:经过部分代码后,我得到了下一个/* "data-url" */结果:/* "data-author" */Debugging windows -> Watches

(我正在使用 Code::Blocks IDE,Ubuntu 13.04)

的长度dataUrl_tempString8字节, 的长度dataAuthor_tempString11字节, 的长度dataName_tempString9字节...

第一张照片

但是在浏览了/* data-name */部分代码之后,我得到了让我感到困惑的结果:

第二张照片

现在它们的大小不是 8、11 和 9 字节!

有什么事?

你能帮我找出这种行为的原因吗?


这是该函数的代码:

int SubString_Search(char *fnameNew, char *strUrl, char *strAuthor, char *strName) {

    FILE *fp;
    FILE *ofp_erase;
    FILE *ofp;
    char ch_buf;
    int count = 0;

    char dataUrl[8] = "";
    char dataAuthor[11] = "";
    char dataName[9] = "";
    char *dataUrl_tempString = &dataUrl[0];
    char *dataAuthor_tempString = &dataAuthor[0];
    char *dataName_tempString = &dataName[0];


    if( (fp = fopen("output_temp.txt", "r")) == NULL) {
        printf("File could not be opened.\n");
        return (-1);
    }
    else {
        /* Erasing 'NEW' file if exists */
        ofp_erase = fopen(fnameNew, "w");
        fclose(ofp_erase);
    }



    ofp = fopen(fnameNew, "a");
    rewind(fp);

    while(!feof(fp)) {

        /* "data-url" */
        fread(dataUrl_tempString, 8, sizeof(char), fp);
        if(memcmp(dataUrl_tempString, strUrl) == 0) {
            fseek(fp, 2, SEEK_CUR);     // going up to required place to copy a string
            while( (ch_buf = getc(fp)) != '"') {
                fputc(ch_buf, ofp);
            }
            fputc('\n', ofp);
        }
        fseek(fp, -8, SEEK_CUR);


        /* "data-author" */
        fread(dataAuthor_tempString, 11, sizeof(char), fp);
        if(memcmp(dataAuthor_tempString, strAuthor) == 0) {
            fseek(fp, 2, SEEK_CUR);     // going up to required place to copy a string
            while( (ch_buf = getc(fp)) != '"') {
                fputc(ch_buf, ofp);
            }
            fputc(' ', ofp);
            fputc('-', ofp);
            fputc(' ', ofp);
        }
        fseek(fp, -11, SEEK_CUR);


        /* "data-name" */
        fread(dataName_tempString, 9, sizeof(char), fp);
        if(memcmp(dataName_tempString, strName) == 0) {
            fseek(fp, 2, SEEK_CUR);     // going up to required place to copy a string
            while( (ch_buf = getc(fp)) != '"') {
                fputc(ch_buf, ofp);
            }
            //fputc() not needed
        }
        fseek(fp, -8, SEEK_CUR); // jumping over 1 symbol from the beginning: `-8` instead of `-9`...


        count++;
        if(count == 5)
            break;
    }

    rewind(fp);
    fclose(fp);
    fclose(ofp);

    return 0;
}
4

2 回答 2

5

一个字符串需要有空间来'\0'终止 - 你只为一个有 8 个字符的字符串分配了 8 个字节(因此至少需要 9 个字节)。根据内存中的内容,您将获得不可预知的结果。

于 2013-08-19T17:28:08.597 回答
1

您可能想将呼叫更改为

int strcmp(const char *s1, const char *s2);

成为呼唤

int memcmp(const void *s1, const void *s2, size_t n);

只要您不在str*()那些(非0终止的)char数组上使用函数系列的其他成员,这将解决问题。

注意:但是memcmp() 总是比较作为第三个参数 ( n) 传递的字符数。这可能不是你想要的。


更新:

或者(作为上述两个调用的混合)还有:

int strncmp(const char *s1, const char *s2, size_t n);

它会进行比较,直到它找到一个0- 终止符s1s2和 最多n字符。

于 2013-08-19T17:41:10.337 回答