C++杂谈
bangbangdebaba
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
一个简单的垃圾回收机制要求与算法
垃圾回收机制算法的要求:1.与内建的与C++手工提供的方法共存 Coexist with the built-in, manual method provided by C++. 2.不要对现有的代码与习惯造成破坏 Not break any preexisting code. Moreover, it must have no impact whatsoever on existing原创 2005-05-23 02:04:00 · 1095 阅读 · 0 评论 -
Herbert Schildt对C++垃圾回收机制的实现
// A single-threaded garbage collector. #include #include #include #include using namespace std; // To watch the action of the garbage collector, define DISPLAY. //原创 2005-05-23 17:50:00 · 1099 阅读 · 0 评论
分享