3

デフォルトのヒープからではなく、セカンダリメモリデバイスからメモリを割り当てる構文を探しています。

どうすれば実装できますか?を使用malloc()すると、デフォルトでヒープから取得されます...確かに別の方法があるはずです!

4

2 に答える 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
}
于 2009-12-14T04:39:11.120 に答える
0

独自のヒープマネージャを構築または適合させる必要があり、and、および、をオーバーロードする必要newdeleteありnew[]ますdelete[]。特別なメモリを使用してヒープマネージャを初期化します。

于 2009-12-14T04:33:49.213 に答える