- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是一名学生,正在开发一个简单的 C 程序,该程序实现两个共享内存段。问题是,当我将 strcpy 函数与指向名为 nptr2 的第二个内存段的指针一起使用时,会更改名为 nptr 的第一个内存段的值。
我一直在阅读另一个问题,这些问题已通过在字符串末尾放置空值来解决,因为正在复制的字符串没有空终止字符。但我希望这不是我的情况,因为我正在使用 fgets。我向您展示了我添加到代码中的一些 printf 的输出,以便更容易地了解发生的情况。
struct estadistikak{
int erabiltzaile;
int bbluzera;
int mezukop;
int karakkop;
};
int memid,memid2;
char mezua[50],*nptr2;
struct shmid_ds buff;
struct estadistikak *nptr;
if ((memid=shmget(0x1234L,sizeof(mezua),0600|IPC_CREAT))<0){
perror("shmget error");
exit(-1);
}
printf("%d\n",memid);
if((nptr2=(char*)shmat(memid,0,0))==(char*)-1){
perror("shmat error");
exit(-1);
}
//Estatistiken memoria sortu eta atzitu
if ((memid2=shmget(0x12345L,sizeof(stats),0600|IPC_CREAT))<0){
perror("shmget error");
exit(-1);
}
printf("%d\n",memid);
if((nptr=(struct estadistikak*)shmat(memid,0,0))==(struct estadistikak*)-1){
perror("shmat error");
exit(-1);
}
请注意,nptr 和 nptr2 是两个不同的内存指针,它们之间没有关系。
printf("Sartu nahi duzun mezua:\n");
fflush(stdout);
__fpurge(stdin);
fgets(mezua,50,stdin);
printf("Before: %d\n",nptr->erabiltzaile);
strcpy(nptr2,mezua);
printf("After: %d\n",nptr->erabiltzaile);
strcpy(mezua2,nptr2);
printf("Mi mensaje: %s\n",mezua2);
Sartu nahi duzun mezua:
asdf
Before: 1
After: 1717859169
Mi mensaje: asdf
感谢您的宝贵时间,并祝您代码愉快!
最佳答案
您两次附加到同一个memid
:
if ((memid=shmget(0x1234L,sizeof(mezua),0600|IPC_CREAT))<0){
perror("shmget error");
exit(-1);
}
if((nptr2=(char*)shmat(memid,0,0))==(char*)-1){
perror("shmat error");
exit(-1);
}
//Estatistiken memoria sortu eta atzitu
if ((memid2=shmget(0x12345L,sizeof(stats),0600|IPC_CREAT))<0){
perror("shmget error");
exit(-1);
}
printf("%d\n",memid);
if((nptr=(struct estadistikak*)shmat(memid,0,0))==(struct estadistikak*)-1){
perror("shmat error");
exit(-1);
}
第二个应该是:
if((nptr=(struct estadistikak*)shmat(memid2,0,0))==(struct estadistikak*)-1){
perror("shmat error");
exit(-1);
}
话虽如此,将 nptr2
附加到 memid
并将 nptr
附加到 memid2
似乎很愚蠢>。我会使用一致的后缀:
nptr1 memid1
nptr2 memid2
因此:
if ((memid1 = shmget(0x1234L, sizeof(mezua), 0600|IPC_CREAT)) < 0)
err_exit("shmget 1");
if ((nptr1 = (char*)shmat(memid1, 0, 0)) == (char*)-1)
err_exit("shmat 1");
if ((memid2 = shmget(0x12345L, sizeof(stats), 0600|IPC_CREAT)) < 0)
err_exit("shmget 2");
if ((nptr2 = (struct estadistikak*)shmat(memid2, 0, 0)) == (struct estadistikak*)-1)
err_exit("shmat 2");
并且 err_exit()
可能很简单:
void err_exit(const char *msg)
{
perror(msg);
exit(-1);
}
虽然我通常使用更复杂的变量参数,类似 printf
的函数。
关于c - Strcpy 函数更改不相关的共享内存数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23443436/
请解释以下程序中发生了什么。 我在程序的开头和结尾检查了 strerror(errno) 返回的地址,并确认它每次都返回相同的地址。然后一旦确定这一点,在第一种情况下我继续将相同的地址分配给 ptr,
我正在尝试使用指针将字符串 str 复制到 str 中。我认为这可以使用单个指针本身来实现。每当我运行我的代码时,我都会显示 str1 但带有过多不需要的垃圾字符。请帮忙。提供一些见解 #includ
长话短说,我正在制作这款 3D OpenGL 构建器游戏。细节并不重要,但这是我的问题。我有这个字符串数组: char building_category_names_UPPER_CASE[][30]
我想使用 strcpy 将我所有的参数连接成一个字符指针。我正在这样做,但我的输出只是一个空格。 我使用了 3 个变量:'concat'(应该是我的输出)、'size' 来获取所有参数的长度和'kar
如果我有一个字符串数组 char* q[2]; q[0] = "Hello"; q[1] = "World"; 我想将 q[0] 放入一个新的字符串数组中 char* x[2]; 在 x[0] 中调用
我正在查看一个 strcpy 示例,其中他们增加了一个指针的值,并在 1 行中分配它,如下所示: *ptrA++ = *ptrB++; 我知道char数组中指针指向的值增加了,复制了内容。 c 会做类
我在 C 程序中使用了一个特定的数据结构,我用它来将类型信息附加到值。一个简单的示例如下所示: #include #include #include struct teststruct {
我需要将用户的输入存储到字符串数组中。 #include #include #include char *history[10] = {0}; int main (void) { cha
#include #include int main() { char *str, *temp; str = malloc(sizeof(char) * 100); fge
我有这样一个基本结构 typedef struct struck { char* id; char* mat; int value; char* place; } *T
我有一个以 开头的函数 void findErrors(int lineIndex){ char *line; strcpy(line, lines[lineIndex]); 然后调用另一个函
我运行了以下程序: #include #include #include int main() { char *p, *q; p = (char*)malloc(1); q =
Closed. This question is off-topic。它当前不接受答案。
每次我尝试将字符串插入程序中的二叉树时,我都必须使用 strcpy 并使用 strcpy 的目标才能成功插入。如果我不使用 strcpy 并仅使用源代码,程序将会崩溃。 示例: char *origi
我的代码给我带来了段错误。我调试了一下,执行strcpy时出现错误。该代码尝试从文本文件中提取数据并将其存储到结构数组中。我计划使用 strcpy 将文本文件的数据存储到结构中。知道为什么会发生这种情
#include #include #include char *vStrs[] = {"Max", "Moritz", "Bolte", "Hans Huckebein", "Helene",
我想知道是否有人可以帮助我解决这个段错误,valgrind 和 gdb 指向 strcpy(),但我仍然找不到它.. void listusers(userstat* ptustat) { F
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我有一个关于 strcpy() 的问题。据我了解,我认为 strcpy 复制位于指针处的字节,而不是指针本身。但这段代码似乎 react 不同。 char* str2 = (char*) mallo
我正在开发一个使用 UDP 协议(protocol)传输文件的项目,但是当我使用 strcpy() 将缓冲区复制到另一个字符串时,它总是丢失一些字符。 简单的想法是:我定义了一个结构: struct
我是一名优秀的程序员,十分优秀!