微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c – 自定义内存管理器

我正在尝试实现一个自定义内存管理器,我想知道是否有更好的方法来实现这个功能,因为当我被问及无效指针算术时,有几个人认为如果我在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_;
}

解决方法

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

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

现在,您需要按某个对象的大小增加该指针.由于显而易见的原因,您无法对void指针执行算术运算,那么您该怎么办?施展它.没有羞耻感.

原文地址:https://www.jb51.cc/c/119446.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐