This may be a little off-topic; as others have pointed out, performance is relative and you can write poorly performing code regardless of whether you have garbage collection. Like John Dibling I expect this post may not be well-taken by some.
In well-written C++, resource lifetimes are managed deterministically, uniformly, and automatically.
In most languages with garbage collection (C# and Java in particular), resource lifetimes are managed nondeterministically, nonuniformly, and only partially automatically.
The problem with garbage collection (as implemented in Java and C#) really isn't that it manages memory for you. That, in and of itself, it kind of a nice feature. It definitely has benefits.
The problem is that you're left out in the cold with every non-memory resource. If you have a file handle, socket, registry key, native synchronization object, or any other resource that requires deterministic cleanup, you have to do extra work to ensure they are cleaned up correctly.
Yes, there are language facilities that are there to help you with this (C# has IDisposable, using, and finally, for example), but the burden still falls on you, the programmer, to write code to manually manage resource lifetimes.
In C++, all resources are managed the same way by using the Scope-Bound Resource Management (SBRM) idiom. The lifetime of a file handle is managed automatically, just as the lifetime of a dynamically allocated object is managed automatically. C++ doesn't need an IDisposable, a using, or a finally because deterministic destruction can be used to clean up anything.
Yes, in C++ you may occasionally have to write your own SBRM container to manage a resource, but it's rare. Most modern libraries (especially those included in Boost) use the SBRM idiom. Even when you do have to write one, it's straightforward and it's write-once, use-everywhere.
The huge advantage of the C++ approach then is that because object lifetimes are deterministic, all object lifetimes can be managed uniformly by using the SBRM idiom, and by using that idiom, all object lifetimes can be managed automatically.
Because of this, I don't think it's possible to say that it's easier to write code when you have garbage collection. Sure, if you never use any other type of resource, you're good to go, but how many programs never use a non-memory resource?
(Note that I am not saying that garbage collection is useless. It may offer performance benefits; I don't really know. It may help reduce heap fragmentation. It may help with a lot of things. I am focusing purely on the usability here.)
C++andC#serve two different purposes and fit different needs. Comparing one to the other in terms of raw performance makes no sense. – ereOn Nov 23 '10 at 15:31