编译此程序时,我不断收到此错误
example4.c: In function ‘h’:
example4.c:36: error: assignment of read-only location
example4.c:37: error: assignment of read-only location
我认为它与指针有关。我该如何解决这个问题。它是否与指向常量指针的常量指针有关?
码
#include <stdio.h>
#include <string.h>
#include "example4.h"
int main()
{
Record value , *ptr;
ptr = &value;
value.x = 1;
strcpy(value.s, "XYZ");
f(ptr);
printf("\nValue of x %d", ptr -> x);
printf("\nValue of s %s", ptr->s);
return 0;
}
void f(Record *r)
{
r->x *= 10;
(*r).s[0] = 'A';
}
void g(Record r)
{
r.x *= 100;
r.s[0] = 'B';
}
void h(const Record r)
{
r.x *= 1000;
r.s[0] = 'C';
}
答案 0 :(得分:5)
在您的函数h
中,您声明r
是常量Record
的副本 - 因此,您无法更改r
或其任何部分 - 这是不变的。
在阅读时应用左右规则。
另请注意,您正在将r
的副本传递给函数h()
- 如果您要修改r
,那么您必须通过一个非常量指针。
void h( Record* r)
{
r->x *= 1000;
r->s[0] = 'C';
}