由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - [合集] 在函数内部如何回收分配的内存?
相关主题
在子函数内开内存,返回主函数指针然后释放空间是不是很糟糕的(转载)alloc这个函数究竟做些啥活呢?
一个函数指针的问题[合集] const 变量问题
内存管理的问题array allocation in c
effective C++里的memory pool 一问:[合集] 一个指针的小问题
why do we still use dynamic allocation?"brk()" 和 mmap() 有什么区别? (转载)
为什么用try catch不住exception?[合集] static const代替define的performance tradeoff在哪里?
关于内存泄漏C++一个string的小问题
[合集] 问个算法问题菜鸟请教C问题
相关话题的讨论汇总
话题: ppointer话题: apr话题: tue话题: 分配话题: 2005
进入Programming版参与讨论
1 (共1页)
b***y
发帖数: 2799
1
☆─────────────────────────────────────☆
BobButtons (钮扣猫) 于 (Tue Apr 26 13:05:57 2005) 提到:
比如这样一个函数
int * f(...)
{ int * pPointer;
pPointer=new int;
...
return pPointer;
}
应该在哪里delete pPointer?
☆─────────────────────────────────────☆
Pontiff (diablo) 于 (Tue Apr 26 13:14:45 2005) 提到:
看你的memory管理contract怎么规定
有的是库德实现方分配和释放
有的是实现这分配,使用者释放

☆─────────────────────────────────────☆
pdhomer (东子) 于 (Tue Apr 26 13:18:03 2005) 提到:
actually, this is one bad way to allocate memo
1 (共1页)
进入Programming版参与讨论
相关主题
菜鸟请教C问题why do we still use dynamic allocation?
question about structure initializationa and reference为什么用try catch不住exception?
C++ Interview Question关于内存泄漏
boost drives me crazy!! Question![合集] 问个算法问题
在子函数内开内存,返回主函数指针然后释放空间是不是很糟糕的(转载)alloc这个函数究竟做些啥活呢?
一个函数指针的问题[合集] const 变量问题
内存管理的问题array allocation in c
effective C++里的memory pool 一问:[合集] 一个指针的小问题
相关话题的讨论汇总
话题: ppointer话题: apr话题: tue话题: 分配话题: 2005