c++ 的垃圾收集(garbage collector

C++ 中實做 gc 有一個有名的 implementation,叫做 Boehm garbage collector。包括 gcj 或 mono 等知名的軟體專案都有採用。
http://patricklog.blogspot.com/2011/02/c-garbage-collector.html
/*
  * gctest.cpp
  *
  *  Created on: 2011/2/27
  *      Author: Patrick Wang
  */
 #include <gc/gc_cpp.h>
 #include <iostream>
 
 #define THIS "this: "<<this
 
 using namespace std;
 
 class ClassA: public virtual gc_cleanup {
 public:
   ClassA() { cout<<"Construction "<<THIS<<endl; }
   ~ClassA() { cout<<"Destruction "<<THIS<<endl; }
   int a[100000];
 
 };
 
 int main() {
   GC_INIT();
   cout<<">>> GC Heap size: "<<GC_get_heap_size()<<endl;
   for (int i = 0; i < 100; i++){
     ClassA *a = new ClassA();
     cout<<">>> GC Heap size: "<<GC_get_heap_size()<<endl;
   }
 }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值