鱼C论坛

 找回密码
 立即注册
查看: 2948|回复: 0

[技术交流] // 比较 strlen(str)和 sizeof(str)的不同 引发的“惨案”

[复制链接]
发表于 2013-10-27 22:10:47 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

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

int main()
{
        int x = 1122867;  // 0x112233 == 1122867
        char str[10] ;
        // 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;
}

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 08:54

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表