如何重载“new”运算符以从辅助存储设备中分配内存?

3

我正在寻找一种语法,可以从辅助存储设备中分配内存,而不是从默认堆中分配。

我该如何实现呢?使用 malloc() 默认会从堆中获取...肯定还有其他方法!


5
好的,你要如何与其他设备进行通信?你们的平台是否提供了相应的API接口?C++并没有标准的方法来完成这个任务,它是依赖于平台的。 - GManNickG
2个回答

11
#include <new>

void* operator new(std::size_t size) throw(std::bad_alloc) {
  while (true) {
    void* result = allocate_from_some_other_source(size);
    if (result) return result;

    std::new_handler nh = std::set_new_handler(0);
    std::set_new_handler(nh);  // put it back
    // this is clumsy, I know, but there's no portable way to query the current
    // new handler without replacing it
    // you don't have to use new handlers if you don't want to

    if (!nh) throw std::bad_alloc();
    nh();
  }
}
void operator delete(void* ptr) throw() {
  if (ptr) {  // if your deallocation function must not receive null pointers
    // then you must check first
    // checking first regardless always works correctly, if you're unsure
    deallocate_from_some_other_source(ptr);
  }
}
void* operator new[](std::size_t size) throw(std::bad_alloc) {
  return operator new(size);  // defer to non-array version
}
void operator delete[](void* ptr) throw() {
  operator delete(ptr);  // defer to non-array version
}

谢谢Roger, 你能否给我一个确切的函数来执行: allocate_from_some_other_source(size); - Sandeep
4
不行,他做不到。如果你看了我的评论,这完全取决于你的平台。C ++在运行的机器上没有任何说明。 - GManNickG
5
分配和释放函数是与“辅助存储设备”通信的关键。这些函数的具体形式取决于您正在进行的操作。 - Roger Pate

0

你需要构建或适应自己的堆管理器,并重载newdelete,以及new[]delete[]。使用特殊内存初始化堆管理器。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接