一、实现要求
二、实现思路
- 连接共享内存
- 读取数据(内存拷贝)
- 读取数据(内存拷贝)
- 断开共享内存的连接
三、代码
#include <iostream>
#include <sys/shm.h>
#include <sys/ipc.h>
#include <stdio.h>
#include <string.h>
using namespace std;
typedef struct chat
{
char uid[10];
char msg[50];
}CHAT;
int main()
{
void* shmaddr = NULL;
int shmid = 0;
char buf[50] = { 0 };
CHAT u1 = { "1001" };
CHAT b2a_res = { 0 };
//创建
shmid = shmget((key_t)1001, 2048, IPC_CREAT | 0777);
if (shmid == -1)
{
perror("shmget error");
}
else
{
//连接共享内存 获取到共享内存的首地址shmaddr
shmaddr = shmat(shmid, NULL, 0);
//bzero(buf, sizeof(buf));
//读取数据 = 内存拷贝
memcpy(&b2a_res, shmaddr, sizeof(CHAT));
cout << "用户名 id " << b2a_res.uid << "对我说: " << endl;
cout << "" << b2a_res.msg << endl;
cout << "A2B 请输入: " << endl;
fgets(buf, sizeof(buf), stdin);
memcpy(u1.msg, &buf, sizeof(buf));
//写入数据 = 内存拷贝
memcpy(shmaddr, &u1, sizeof(CHAT));
//断开共享内存的连接
shmdt(shmaddr);
}
return 0;
}
#include <iostream>
#include <sys/shm.h>
#include <sys/ipc.h>
#include <stdio.h>
#include <string.h>
using namespace std;
typedef struct chat
{
char uid[10];
char msg[50];
}CHAT;
int main()
{
void* shmaddr = NULL;
int shmid = 0;
char buf[50] = { 0 };
CHAT u2 = { "1002" };
CHAT a2b_res = { 0 };
//创建
shmid = shmget((key_t)1001, 2048, IPC_CREAT | 0777);
if (shmid == -1)
{
perror("shmget error");
}
else
{
//连接共享内存 获取到共享内存的首地址
shmaddr = shmat(shmid, NULL, 0);
//读取数据 = 内存拷贝
memcpy(&a2b_res, shmaddr, sizeof(STU));
cout << "用户名 id " << a2b_res.uid << "对我说: " << endl;
cout << " " << a2b_res.msg << endl;
cout << "B2A 请输入: " << endl;
fgets(buf, sizeof(buf), stdin);
memcpy(u2.msg, &buf, sizeof(buf));
//写入数据 = 内存拷贝
memcpy(shmaddr, &u2, sizeof(CHAT));
//断开共享内存的连接
shmdt(shmaddr);
}
return 0;
}
四、运行结果