jun 发表于 2013-10-27 22:10:47

// 比较 strlen(str)和 sizeof(str)的不同 引发的“惨案”

#include <STDIO.H>
#include "string.h"

int main()
{
        int x = 1122867;// 0x112233 == 1122867
        char str ;
        // strlen()以'\0',作为结束标志,故strlen(str)不确定
        printf("strlen of str is: %d \n",strlen(str));

        //而sizeof(str)==10
        printf("sizeof of str is: %d \n",sizeof(str));

        printf("x is: %d\n",x); //x == 1122867

        //反汇编的时候发现,strcpy()只给"www.it315.o11"
        //分配了12个字节的空间,也许是用str做标准来分配的
        //所以,"www.it315.o11"最后的那个"1"会占用,变量x的
        //空间,此时0x112233变为,0x112231
        strcpy(str,"www.it315.o11");

        //但是,x != 0x112231,为什么呢,因为,strcpy()把'\0'
        //也复制了过来 x == 0x110031 == 1114161
        printf("x is: %d\n",x);

        //strlen()以'\0',作为结束标志(不包括'\0'),故strlen(str)==13
        printf("strlen of str is: %d \n",strlen(str));

        // sizeof()函数返回的是变量声明后所占的内存数,不是实际长度
        // 故sizeof(str)==10
        printf("sizeof of str is: %d \n",sizeof(str));

        return 0;
}

页: [1]
查看完整版本: // 比较 strlen(str)和 sizeof(str)的不同 引发的“惨案”