c++

c++怎么创建共享内存

小亿
141
2023-08-20 00:47:30
栏目: 编程语言

在C++中,可以使用操作系统的系统调用或者第三方库来创建共享内存。

  1. 使用操作系统的系统调用:

在Unix/Linux操作系统中,可以使用shmget函数来创建共享内存。具体步骤如下:

#include <sys/ipc.h>
#include <sys/shm.h>
#include <iostream>
int main() {
key_t key = ftok("shmfile",65); // 生成一个唯一的key
int shmid = shmget(key,1024,0666|IPC_CREAT); // 创建共享内存,大小为1024字节
if (shmid == -1) {
std::cout << "Failed to create shared memory!" << std::endl;
return 1;
}
std::cout << "Shared memory created with ID: " << shmid << std::endl;
return 0;
}

在Windows操作系统中,可以使用CreateFileMapping函数来创建共享内存。具体步骤如下:

#include <windows.h>
#include <iostream>
int main() {
HANDLE hMapFile = CreateFileMapping(INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, 1024, "SharedMemory"); // 创建共享内存,大小为1024字节
if (hMapFile == NULL) {
std::cout << "Failed to create shared memory!" << std::endl;
return 1;
}
std::cout << "Shared memory created with handle: " << hMapFile << std::endl;
return 0;
}
  1. 使用第三方库:

使用第三方库可以简化共享内存的创建和管理过程。例如,可以使用Boost.Interprocess库来创建共享内存。具体步骤如下:

#include <boost/interprocess/shared_memory_object.hpp>
#include <iostream>
int main() {
boost::interprocess::shared_memory_object shm(boost::interprocess::create_only, "SharedMemory", boost::interprocess::read_write); // 创建共享内存
shm.truncate(1024); // 设置共享内存大小为1024字节
std::cout << "Shared memory created with handle: " << shm.get_handle() << std::endl;
return 0;
}

注意:使用Boost.Interprocess库需要先安装库文件并链接到项目中。

无论使用哪种方法,创建共享内存后,就可以在其他进程中通过相同的key或者名称打开该共享内存,并进行读写操作。

0
看了该问题的人还看了