奇怪的c ++内存使用情况

时间:2014-03-12 08:39:32

标签: c++ memory

我有以下课程:

class testclass{
    int a[5];
};

以及以下主要功能:

int main(int argc, const char * argv[])  
{
    testclass* t;
    while(true)
        t = new testclass();
    return 0;
}

所以我用这个来快速填满我的所有记忆。但这是xcode给我的内存使用情况图:

enter image description here

我根本不懂。如何在这个程序中内存使用率下降?

1 个答案:

答案 0 :(得分:0)

oke回答道。该图似乎只显示物理内存使用情况。当我进入活动监视器时,我可以看到虚拟内存使用量巨大:

enter image description here

那是荷兰语,但我想你会明白的。

感谢您的回答