由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 问个问题 (转载)
相关主题
哪位在Linux上用C++碰到过memory fragmentation吗?C++ Interview Question
How solid it is: c++/c# call Matlab library内存分配问题
怎样高效管理内存?a small question about c++ memory allocation
effective C++里的memory pool 一问:请教关于allocator member function 的问题
why do we still use dynamic allocation?在子函数内开内存,返回主函数指针然后释放空间是不是很糟糕的(转载)
为什么会有recursion stack overflow这个问题?关于C/C++里的Static variable的memory allocation/initializa
关于内存泄漏什么是OS Memory management and heap structure?
C++一个string的小问题Is there any error in the code below?
相关话题的讨论汇总
话题: 问个问题话题: memory话题: classes话题: fri话题: jul
进入Programming版参与讨论
1 (共1页)
s**********a
发帖数: 3273
1
【 以下文字转载自 CS 讨论区 】
发信人: synaesthesia (Pirate), 信区: CS
标 题: 问个问题
发信站: BBS 未名空间站 (Fri Jul 27 10:12:56 2007)
新手,我想是老问题了。面试中被问到的。
在 C++ 中,new 的问题是容易造成 memory fragments. 解决方法是自己 allocate a
large piece of memory,然后顺着往里排 classes. 但是 classes 的 size 是不一定
的。问怎么实现最简单合理。
k****f
发帖数: 3794
2
一般按class大小分类就好了
小的都在一起,

a

【在 s**********a 的大作中提到】
: 【 以下文字转载自 CS 讨论区 】
: 发信人: synaesthesia (Pirate), 信区: CS
: 标 题: 问个问题
: 发信站: BBS 未名空间站 (Fri Jul 27 10:12:56 2007)
: 新手,我想是老问题了。面试中被问到的。
: 在 C++ 中,new 的问题是容易造成 memory fragments. 解决方法是自己 allocate a
: large piece of memory,然后顺着往里排 classes. 但是 classes 的 size 是不一定
: 的。问怎么实现最简单合理。

h**o
发帖数: 347
3
同问,可以让object new在指定memory?

a

【在 s**********a 的大作中提到】
: 【 以下文字转载自 CS 讨论区 】
: 发信人: synaesthesia (Pirate), 信区: CS
: 标 题: 问个问题
: 发信站: BBS 未名空间站 (Fri Jul 27 10:12:56 2007)
: 新手,我想是老问题了。面试中被问到的。
: 在 C++ 中,new 的问题是容易造成 memory fragments. 解决方法是自己 allocate a
: large piece of memory,然后顺着往里排 classes. 但是 classes 的 size 是不一定
: 的。问怎么实现最简单合理。

1 (共1页)
进入Programming版参与讨论
相关主题
Is there any error in the code below?why do we still use dynamic allocation?
pointer to base class = new derived, what will happend??为什么会有recursion stack overflow这个问题?
Re: godly C++ programmers needed关于内存泄漏
问个简单的memory allocation 的问题。C++一个string的小问题
哪位在Linux上用C++碰到过memory fragmentation吗?C++ Interview Question
How solid it is: c++/c# call Matlab library内存分配问题
怎样高效管理内存?a small question about c++ memory allocation
effective C++里的memory pool 一问:请教关于allocator member function 的问题
相关话题的讨论汇总
话题: 问个问题话题: memory话题: classes话题: fri话题: jul