系统级编程2 Allocation and Reference

#include <stdio.h>

void Initialize (char * a, char * b)
{
        a[0] = 'T'; a[1] = 'h'; a[2] = 'i';
        a[3] = 's'; a[4] = ' '; a[5] = 'i';
        a[6] = 's'; a[7] = ' '; a[8] = 'A';
        a[9] = '\0';
        b = a;
        b[8] = 'B';
}

#define ARRAY_SIZE 10
char a[ARRAY_SIZE];
char b[ARRAY_SIZE];

int main(int argc, char * argv[])
{
        Initialize(a, b);
        printf("%s\n%s\n", a, b);
        return 0;
}
 

When you run this program, only "This is B" is printed. To see why, place a

breakpoint in the line b[8] = 'B' and rerun the program. Take a look at the values 

of a and b. They are the same, as they should be, because we assigned a to b in the

 previous line. What is the same, however, is not the  contents  of the arrays but 

the two arrays have the same address after the assignment b = a. The contents are 

not only equal, they  are  the same. Modifying one will also modify the other. The 

assignment b[8] = 'B' will modify the bits of memory that also contain a[8], and

 the contents of the original b will remain untouched. The two original arrays 

still get printed, but the first one will now contain "This is B" and the second

 will be empty because it was never touched. The address of the second one, which 

was allocated by the compiler when it was declared, was overwritten and discarded

 by the line b = a before its contents were modified.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值