在下面的程序中,
#include<stdio.h>
#include<stdlib.h>
int main(){
const char *str1 = "abc";
char *str2 = (char *)malloc(sizeof(char)*4);
str2= "def";
str2[1]='s';
printf("str2 is %s", str2);
}
调试器:
(gdb) ptype str1
type = const char *
(gdb) ptype str2
type = char *
(gdb) n
7 str2[1]='s';
(gdb) n
Program received signal SIGSEGV, Segmentation fault.
0x00000000004005ab in main () at main.c:7
7 str2[1]='s';
(gdb)
SIGSEGV 开启str2[1] = 's';
根据我的理解,由于声明,不能修改abc
指向的,其中字符串文字是常量。st1
const char *st1 = "abc"
为什么char *
typestr2
不允许修改元素?stringliteraldef
也是常量字符串文字。