- 论坛徽章:
- 0
|
原帖由 ideawu 于 2008-6-1 11:48 发表 ![]()
谢谢回复. 我的程序中, STL 使用的内存超过 100M, 也是这种表现. 100M可不小了. "一旦进池的内存就再也不会交还给系统了", 如果真是这样, 这个 STL 的实现看来是不适合我的应用. 因为我的程序要长时间(如一个 ...
区区一直用mingw的STL,没觉得内存会一直占着。阁下可以用下面的程序来试试:
#include<iostream>
#include<deque>
using namespace std;
void eat_memory(){
deque<int> dummy_num;
for(int i=0; i< 1000 * 1000 * 100; ++i) {
dummy_num.push_back(i);
}
};
int main()
{
eat_memory();
eat_memory(); //again
eat_memory(); //again
eat_memory(); //and again
cin.get(); //wait for taskmgr
return 0;
}
|
补充说明一下,用vector一下子很难从系统中要到连续的100MB,所以区区用的是deque。
在cin.get()时,你可以查看一下内存状况(过程中查看也很有意思~)。
mingw使用的allocator是include/c++/3.4.5/mingw32/bits/c++allocator.h
最终会指向include/c++/3.4.5/ext/new_allocator.h
GCC的new_allocator实现如下:
pointer
allocate(size_type __n, const void* = 0)
{ return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp))); }
void
deallocate(pointer __p, size_type)
{ ::operator delete(__p); } |
所以用new_allocator的话内存是不会长期占用的。 |
|