I'm not asking this question because of the merits of garbage collection first of all. My main reason for asking this is that I do know that Bjarne Stroustrup has said that C++ will have a garbage collector at some point in time.

With that said, why hasn't it been added? There are already some garbage collectors for C++. Is this just one of those "easier said than done" type things? Or are there other reasons it hasn't been added (and won't be added in C++11)?

Cross links:

EDIT: Just to clarify, I understand the reasons why C++ didn't have a garbage collector when it was first created. I'm wondering why the collector can't be added in.

link|improve this question

6  
This is one of the top ten myths about C++ that the haters always bring up. Garbage collection isn't "built in", but there are several easy ways to do it C++. Posting a comment because others have already answered better than I could below :) – davr Sep 29 '08 at 3:25
1  
But that's the whole point about not being built-in, you have to do it yourself. Realibility from high to low : built-in, library, home-made. I use C++ myself, and definitely not a hater because it's the best language in the world. But dynamic memory management is a pain. – QBziZ Sep 29 '08 at 8:55
2  
@Davr - I'm not a C++ hater nor am I even trying to even argue that C++ needs a garbage collector. I'm asking because I know that Bjarne Stroustrup has said that it WILL be added and was just curious what the reasons for not implementing it were. – Jason Baker Sep 29 '08 at 23:21
See also stackoverflow.com/questions/819425/…. – Daniel Daranas May 19 '09 at 7:38
i think a better question is; why a garbage collection strategy is not optional in c++? and why the c++0x original proposal didn't allow for partial gc in a program? – lurscher Dec 10 '10 at 16:42
feedback

9 Answers

up vote 51 down vote accepted

Implicit garbage collection could have been added in, but it just didn't make the cut. Probably due to not just implementation complications, but also due to people not being able to come to a general consensus fast enough.

A quote from Bjarne Stroustrup himself (source):

I had hoped that a garbage collector which could be optionally enabled would be part of C++0x, but there were enough technical problems that I have to make do with just a detailed specification of how such a collector integrates with the rest of the language, if provided. As is the case with essentially all C++0x features, an experimental implementation exists.

Please see the above link for a more detailed discussion on why GC is hard.

There is also a good discussion of the topic here.

General overview:

C++ is very powerful and allows you to do almost anything. For this reason it doesn't automatically push many things onto you that might impact performance. Garbage collection can be easily implemented with smart pointers (objects that wrap pointers with a reference count, which auto delete themselves when the reference count reaches 0).

C++ was built with competitors in mind that did not have garbage collection. Efficiency was the main concern that C++ had to fend off criticism from in comparison to C and others.

There are 2 types of garbage collection...

Explicit garbage collection:

C++0x will have garbage collection via pointers created with shared_ptr

If you want it you can use it, if you don't want it you aren't forced into using it.

You can currently use boost:shared_ptr as well if you don't want to wait for C++0x.

Implicit garbage collection:

It does not have transparent garbage collection though. It will be a focus point for future C++ specs though.

Why Tr1 doesn't have implicit garbage collection?

There are a lot of things that tr1 of C++0x should have had, Bjarne Stroustrup in previous interviews stated that tr1 didn't have as much as he would have liked.

link|improve this answer
I would become a hater if C++ forced garbage collection upon me! Why can't people use smart_ptr's? How would you do low level Unix style forking, with a garbage collector in the way? Other things would be affected such as threading. Python has its global interpreter lock mostly because of it's garbage collection (see Cython). Keep it out of C / C++, thanks. – unixman83 Apr 19 at 7:47
How do you do transparent garbage collection of void * operating system API opaque structures? – unixman83 Apr 19 at 7:54
feedback

To add to the debate here.

There are known issues with garbage collection, and understanding them helps understanding why there is none in C++.

1. Performance ?

The first complaint is often about performance, but most people don't really realize what they are talking about. As illustrated by Martin Beckett the problem may not be performance per se, but the predictability of performance.

There are currently 2 families of GC that are widely deployed:

  • Mark-And-Sweep kind
  • Reference-Counting kind

The Mark And Sweep is faster (less impact on overall performance) but it suffers from a "freeze the world" syndrom: ie when the GC kicks in, everything else is stopped until the GC has made its cleanup. If you wish to build a server that answers in a few milliseconds... some transactions will not live up to your expectations :)

The problem of Reference Counting is different: reference-counting adds overhead, especially in Multi-Threading environments because you need to have an atomic count. Furthermore there is the problem of reference cycles so you need a clever algorithm to detect those cycles and eliminate them (generally implement by a "freeze the world" too, though less frequent). In general, as of today, this kind (even though normally more responsive or rather, freezing less often) is slower than the Mark And Sweep.

I have a seen a paper by Eiffel implementers that were trying to implement a Reference Counting Garbage Collector that would have a similar global performance to Mark And Sweep without the "Freeze The World" aspect. It required a separate thread for the GC (typical). The algorithm was a bit frightening (at the end) but the paper made a good job of introducing the concepts one at a time and showing the evolution of the algorithm from the "simple" version to the full-fledged one. Recommended reading if only I could put my hands back on the PDF file...

2. Resources Acquisition Is Initialization

It's a common idiom in C++ that you will wrap the ownership of resources within an object to ensure that they are properly released. It's mostly used for memory since we don't have garbage collection, but it's also useful nonetheless for many other situations:

  • locks (multi-thread, file handle, ...)
  • connections (to a database, another server, ...)

The idea is to properly control the lifetime of the object:

  • it should be alive as long as you need it
  • it should be killed when you're done with it

The problem of GC is that if it helps with the former and ultimately guarantees that later... this "ultimate" may not be sufficient. If you release a lock, you'd really like that it be released now, so that it does not block any further calls!

Languages with GC have two work arounds:

  • don't use GC when stack allocation is sufficient: it's normally for performance issues, but in our case it really helps since the scope defines the lifetime
  • using construct... but it's explicit (weak) RAII while in C++ RAII is implicit so that the user CANNOT unwittingly make the error (by omitting the using keyword)

3. Smart Pointers

Smart pointers often appear as a silver bullet to handle memory in C++. Often times I have heard: we don't need GC after all, since we have smart pointers.

One could not be more wrong.

Smart pointers do help: auto_ptr and unique_ptr use RAII concepts, extremely useful indeed. They are so simple that you can write them by yourself quite easily.

When one need to share ownership however it gets more difficult: you might share among multiple threads and there are a few subtle issues with the handling of the count. Therefore, one naturally goes toward shared_ptr.

It's great, that's what Boost for after all, but it's not a silver bullet. In fact, the main issue with shared_ptr is that it emulates a GC implemented by Reference Counting but you need to implement the cycle detection all by yourself... Urg

Of course there is this weak_ptr thingy, but I have unfortunately already seen memory leaks despite the use of shared_ptr because of those cycles... and when you are in a Multi Threaded environment, it's extremely difficult to detect!

4. What's the solution ?

There is no silver bullet, but as always, it's definitely feasible. In the absence of GC one need to be clear on ownership:

  • prefer having a single owner at one given time, if possible
  • if not, make sure that your class diagram does not have any cycle pertaining to ownership and break them with subtle application of weak_ptr

So indeed, it would be great to have a GC... however it's no trivial issue. And in the mean time, we just need to roll up our sleeves.

link|improve this answer
I wish I could accept two answers! This is just great. One thing to point out, in regards to performance, the GC that runs in a separate thread is actually pretty common (it's used in Java and .Net). Granted, that might not be acceptable in embedded systems. – Jason Baker Feb 25 '10 at 13:24
thanks, very useful explanation. – bialix May 30 '10 at 7:19
4  
Only two types? How 'bout copying collectors? Generational collectors? Assorted concurrent collectors (including Baker's hard real-time treadmill)? Various hybrid collectors? Man, the sheer ignorance in the industry of this field astonishes me sometimes. – JUST MY correct OPINION Jun 1 '10 at 14:51
3  
Did I say there were only 2 types ? I said that there were 2 that were widely deployed. As far as I know Python, Java and C# all use Mark and Sweep algorithms now (Java used to have a reference counting algorithm). To be even more precise, it seems to me than C# uses Generational GC for minor cycles, Mark And Sweep for major cycles and Copying to fight off memory fragmentation; though I would argue that the heart of the algorithm is Mark And Sweep. Do you know any mainstream language that uses another technology ? I'm always happy to learn. – Matthieu M. Jun 1 '10 at 17:59
2  
You just named one mainstream language that used three. – JUST MY correct OPINION Jun 2 '10 at 2:15
show 7 more comments
feedback

What type? should it be optimised for embedded washing machine controllers, cell phones, workstations or supercomputers?
Should it prioritise gui responsiveness or server loading?
should it use lots of memory or lots of CPU?

C/c++ is used in just too many different circumstances. I suspect something like boost smart pointers will be enough for most users

Edit - Automatic garbage collectors aren't so much a problem of performance (you can always buy more server) it's a question of predicatable performance.
Not knowing when the GC is going to kick in is like employing a narcoleptic airline pilot, most of the time they are great - but when you really need responsiveness!

link|improve this answer
3  
I definitely see your point, but I feel compelled to ask: isn't Java used in just about as many applications? – Jason Baker Sep 29 '08 at 1:05
16  
No. Java is not suitable for high performance applications, for the simple reason that it doesn't have performance guarantees to the same extent as C++. So you'll find it in a cell phone, but you won't find it in a cell switch or supercomputer. – Zathrus Sep 29 '08 at 1:22
7  
You can always buy more server, but you can't always buy more CPU for the cell phone already in the customer's pocket! – Crashworks Jan 10 '10 at 5:06
3  
Java has done a lot of performance catchup in CPU efficiency. The really intractable problem is memory usage, Java is inherently less memory efficient than C++. And that inefficiency is due to the fact that it is garbage collected. Garbage collection cannot be both fast and memory efficient, a fact that becomes obvious if you look into how fast GC algorithms work. – Nate C-K Nov 3 '10 at 15:20
@Zathrus java can win on throughput b/c of the optimizing jit, though not latency (boo real-time), and certainly not memory footprint. – gtrak Oct 22 '11 at 21:54
feedback

One of the biggest reasons that C++ doesn't have built in garbage collection is that getting garbage collection to play nice with destructors is really, really hard. As far as I know, nobody really knows how to solve it completely yet. There are alot of issues to deal with:

  • deterministic lifetimes of objects (reference counting gives you this, but GC doesn't. Although it may not be that big of a deal).
  • what happens if a destructor throws when the object is being garbage collected? Most languages ignore this exception, since theres really no catch block to be able to transport it to, but this is probably not an acceptable solution for C++.
  • How to enable/disable it? Naturally it'd probably be a compile time decision but code that is written for GC vs code that is written for NOT GC is going to be very different and probably incompatible. How do you reconcile this?

These are just a few of the problems faced.

link|improve this answer
7  
GC and destructors is a solved problem, by a nice sidestep from Bjarne. Destructors don't run during GC, because that's not the point of GC. GC in C++ exists to create the notion of infinite memory, not infinite other resources. – MSalters Sep 29 '08 at 11:54
2  
If destructors don't run that completely changes the semantics of the language. I guess at the very least you'd need a new keyword "gcnew" or something so that you explicitly allow this object to be GC'ed (and therefore you shouldn't use it to wrap resources besides memory). – Greg Rogers Sep 29 '08 at 13:43
4  
This is a bogus argument. Since C++ has explicit memory management, you need to figure out when every object must be freed. With GC, it is no worse; rather, the problem is reduced to figuring out when certain objects are freed, namely those objects that require special considerations upon deletion. Experience programming in Java and C# reveals that the vast majority of objects require no special considerations and can be safely left to the GC. As it turns out, one of the main functions of destructors in C++ is to free child objects, which GC handles for you automatically. – Nate C-K Nov 3 '10 at 15:27
feedback

If you want automatic garbage collection, there are good commercial and public-domain garbage collectors for C++. For applications where garbage collection is suitable, C++ is an excellent garbage collected language with a performance that compares favorably with other garbage collected languages. See The C++ Programming Language (3rd Edition) for a discussion of automatic garbage collection in C++. See also, Hans-J. Boehm's site for C and C++ garbage collection. Also, C++ supports programming techniques that allows memory management to be safe and implicit without a garbage collector.

Source: http://www.research.att.com/~bs/bs_faq.html#garbage-collection

As for why it doesnt have it built in, If I remember correctly it was invented before GC was the thing, and I don't believe the language could of had GC for several reasons(I.E Backwards compatibilty with C)

Hope this helps.

link|improve this answer
feedback

To answer most "why" questions about C++, read Design and Evolution of C++

link|improve this answer
feedback

The idea behind C++ was that you would not pay any performance impact for features that you don't use. So adding garbage collection would have meant having some programs run straight on the hardware the way C does and some within some sort of runtime virtual machine.

Nothing prevents you from using some form of smart pointers that are bound to some third-party garbage collection mechanism. I seem to recall Microsoft doing something like that with COM and it didn't go to well.

link|improve this answer
1  
I don't think GC requires a VM. The compiler could add code to all pointer operations to update a global state, while a separate thread runs in the background deleting objects as needed. – user83255 May 7 '09 at 11:39
I agree. You don't need a virtual machine, but the second you start having something manage your memory for you like that in the background, my feel is that you've left the actual "electric wires" and have sort of a VM situation. – Uri May 7 '09 at 16:25
feedback

Though this is an old question, there's still one problem that I don't see anybody having addressed at all: garbage collection is almost impossible to specify.

In particular, the C++ standard is quite careful to specify the language in terms of externally observable behavior, rather than how the implementation achieves that behavior. In the case of garbage collection, however, the is virtually not externally observable behavior.

The general idea of garbage collection is that it should make a reasonable attempt at assuring that a memory allocation will succeed. Unfortunately, it's essentially impossible to guarantee that any memory allocation will succeed, even if you do have a garbage collector in operation. This is true to some extent in any case, but particularly so in the case of C++, because it's (probably) not possible to use a copying collector (or anything similar) that moves objects in memory during a collection cycle.

If you can't move objects, you can create a single, contiguous memory space from which to do your allocations -- and that means your heap (or free store, or whatever you prefer to call it) can, and probably will, become fragmented over time. This, in turn, can prevent an allocation from succeeding, even when there's more memory free than the amount being requested.

While it might be possible to come up with some guarantee that says (in essence) that if you repeat exactly the same pattern of allocation repeatedly, and it succeeded the first time, it will continue to succeed on subsequent iterations, provided that the allocated memory became inaccessible between iterations. That's such a weak guarantee it's essentially useless, but I can't see any reasonable hope of strengthening it.

Even so, it's stronger than what has been proposed for C++. The previous proposal [warning: PDF] (that got dropped) didn't guarantee anything at all. In 28 pages of proposal, what you got in the way of externally observable behavior was a single (non-normative) note saying:

[ Note: For garbage collected programs, a high quality hosted implementation should attempt to maximize the amount of unreachable memory it reclaims. —end note ]

At least for me, this raises a serious question about return on investment. We're going to break existing code (nobody's sure exactly how much, but definitely quite a bit), place new requirements in implementations and new restrictions on code, and what we get in return is quite possibly nothing at all?

Even at best, what we get are programs that, based on testing with Java, will probably require around six times as much memory to run at the same speed they do now. Worse, garbage collection was part of Java from the beginning -- C++ places enough more restrictions on the garbage collector that it will almost certainly have an even worse cost/benefit ratio (even if we go beyond what the proposal guaranteed and assume there would be some benefit).

I'd summarize the situation mathematically: this a complex situation. As any mathematician knows, a complex number has two parts: real and imaginary. It appears to me that what we have here are costs that are real, but benefits that are (at least mostly) imaginary.

link|improve this answer
feedback

All the technical talking is overcomplicating the concept.

If you put GC into C++ for all the memory automatically then consider something like a web browser. The web browser must load a full web document AND run web scripts. You can store web script variables in the document tree. In a BIG document in a browser with lots of tabs open, it means that every time the GC must do a full collection it must also scan all the document elements.

On most computers this means that PAGE FAULTS will occur. So the main reason, to answer the question is that PAGE FAULTS will occur. You will know this as when your PC starts making lots of disk access. This is because the GC must touch lots of memory in order to prove invalid pointers. When you have a bona fide application using lots of memory, having to scan all objects every collection is havoc because of the PAGE FAULTS. A page fault is when virtual memory needs to get read back into RAM from disk.

So the correct solution is to divide an application into the parts that need GC and the parts that do not. In the case of the web browser example above, if the document tree was allocated with malloc, but the javascript ran with GC, then every time the GC kicks in it only scans a small portion of memory and all PAGED OUT elements of the memory for the document tree does not need to get paged back in.

To further understand this problem, look up on virtual memory and how it is implemented in computers. It is all about the fact that 2GB is available to the program when there is not really that much RAM. On modern computers with 2GB RAM for a 32BIt system it is not such a problem provided only one program is running.

As an additional example, consider a full collection that must trace all objects. First you must scan all objects reachable via roots. Second scan all the objects visible in step 1. Then scan waiting destructors. Then go to all the pages again and switch off all invisible objects. This means that many pages might get swapped out and back in multiple times.

So my answer to bring it short is that the number of PAGE FAULTS which occur as a result of touching all the memory causes full GC for all objects in a program to be unfeasible and so the programmer must view GC as an aid for things like scripts and database work, but do normal things with manual memory management.

And the other very important reason of course is global variables. In order for the collector to know that a global variable pointer is in the GC it would require specific keywords, and thus existing C++ code would not work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.