gpt4 book ai didi

c++ - 自定义内存管理器

转载 作者:可可西里 更新时间:2023-11-01 17:14:33 25 4
gpt4 key购买 nike

我正在尝试实现一个自定义内存管理器,我想知道是否有更好的方法来实现这个功能,因为当我被问及 void 指针算法时,一些人认为如果我在 C++ 中有一个 void*,出了点问题。

// allocates a page of memory.
void ObjectAllocator::allocatePage()
{
//if(OAStats_.PagesInUse_ >= Config_.MaxPages_)
//throw exception

void* buffer = ::operator new(OAStats_.PageSize_); // allocate memory, no constructor call.

// =============== Setup the PageList_ ===============
GenericObject* pNewNode = ::new(buffer) GenericObject(); // Construct GenericObject for the pagelist.
pNewNode->Next = PageList_->Next; // pNewNode points to wherever PageList_ pointed to.
PageList_->Next = pNewNode; // PageList_ points to pNewNode
pNewNode = NULL; // dont need this handle anymore
buffer = static_cast<char*>(buffer) + sizeof(GenericObject); // move pointer to point after the generic object.

// =============== Setup the FreeList_ ===============
for(int i=0;i<Config_.ObjectsPerPage_;++i)
{
static GenericObject* pPreviousNode = NULL; // static variable to hold the previous node
pNewNode = ::new(buffer) GenericObject(); // Construct GenericObject for the freelist.
pNewNode->Next = pPreviousNode;
pPreviousNode = pNewNode;
buffer = static_cast<char*>(buffer) + OAStats_.ObjectSize_; // move pointer by ObjectSize.
++OAStats_.FreeObjects_;
}
FreeList_->Next = pNewNode;

++OAStats_.PagesInUse_;
++OAStats_.Allocations_;
}

最佳答案

如果您需要一 block 内存来存储字符串(8 位 ANSI),将指向该缓冲区的指针声明为 char 并对其进行操作是有意义的。

在您的情况下,您需要一个“blob”内存块,它没有固有类型,因此您正确地选择了 void* 来表示该 blob。

现在您需要将该指针增加某个对象的大小。由于显而易见的原因,您不能对 void 指针执行算术运算,那么您会怎么做?类型转换它。这并不丢人。

关于c++ - 自定义内存管理器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3378090/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com