vote up 22 vote down star
4

Or is it now the other way around?

From what I've heard there are some areas in which C# proves to be faster than C++, but I've never had the guts to test it by myself.

Thought any of you could explain these differences in detail or point me to the right place for information on this.

flag

59% accept rate
1  
I think this is wrongly tagged as subjective. It depends on the situation, but it is not personal preference. – Dave Hillier Dec 8 '08 at 13:50

21 Answers

vote up 65 vote down check

There is no strict reason why a bytecode based language like C# or Java that has a JIT cannot be as fast as C++ code. However C++ code used to be significantly faster for a long time, and also today still is in many cases. This is mainly due to the more advanced JIT optimizations being complicated to implement, and the really cool ones are only arriving just now.

So C++ is faster, in many cases. But this is only part of the answer. The cases where C++ is actually faster, are highly optimized programs, where expert programmers thoroughly optimized the hell out of the code. This is not only very time consuming (and thus expensive), but also commonly leads to errors due to over-optimizations.

On the other hand, code in interpreted languages gets faster in later versions of the runtime (.NET CLR or Java VM), without you doing anything. And there are a lot of useful optimizations JIT compilers can do that are simply impossible in languages with pointers. Also, some argue that garbage collection should generally be as fast or faster as manual memory management, and in many cases it is. You can generally implement and achieve all of this in C++ or C, but it's going to be much more complicated and error prone.

As Donald Knuth said, "premature optimization is the root of all evil". If you really know for sure that you're application will mostly consist of very performance critical arithmetic, and that it will be the bottleneck, and it's certainly going to be faster in C++, and you're sure that C++ won't conflict with your other requirements, go for C++. In any other case, concentrate on first implementing your application correctly in whatever language suits you best, then find performance bottlenecks if it runs too slow, and then think about how to optimize the code. In the worst case, you might need to call out to C code through a foreign function interface, so you'll still have the ability to write critical parts in lower level language.

Keep in mind that it's relatively easy to optimize a correct program, but much harder to correct an optimized program.

Giving actual percentages of speed advantages is impossible, it largely depends on your code. In many cases, the programming language implementation isn't even the bottleneck. Take the benchmarks at http://shootout.alioth.debian.org/ with a great deal of scepticism, as these largely test arithmetic code, which is most likely not similar to your code at all.

link|flag
3  
<quote>code in interpreted languages gets faster in later versions of the runtime</quote> As code compiled by a better version of the compiler will also get faster. – Martin York Sep 26 '08 at 9:44
Note that, if sb has to code performance critical arithmetic, it's best to code it in Fortran, otherwise provide hints to the C++ compiler that the data won't be aliased by other pointers. – ΤΖΩΤΖΙΟΥ Sep 26 '08 at 9:50
In fact there is at least one reason: JIT needs to be fast, and cannot afford to spend time on various advanced optimizations available to a C++ compiler. – Nemanja Trifunovic Sep 26 '08 at 14:04
@Nemanja Trifunovic: depends on your scenario. In server applications, JIT doesn't really need to be fast - you can amortize the cost over time very well, and perform incremental enhancements on the code. – martinprobst Sep 29 '08 at 14:18
1  
"but also commonly leads to errors due to over-optimizations." [citation desperately needed]. I work at a national lab, and we optimize the hell out of our code. This does not commonly result in buggy code. – tgamblin Dec 11 '08 at 13:52
show 2 more comments
vote up -1 vote down

Well, in most applications, the bottlekneck is in the databse anyways. But I know that the garbage collection done in C# makes it almost as fast, if not faster than unmanaged code.

link|flag
Be careful ! This is true for business or internet software only ! You still have plenty of software domain where raw processor power is the real bottleneck ! – PierreBdR Sep 26 '08 at 9:06
Databases don't even need to be discussed here - the question revolves around the C# and C++ languages and their respective runtimes. – OJ Sep 26 '08 at 9:25
The GC is not what makes C# "fast". In fact you'll find that in some scenarios C++ outperforms C#, and in others C# will outperform C++. The answer will vary depending on a few things, including the C++ compiler you use and the optimisations you have turned on. – OJ Sep 26 '08 at 9:26
Downmodded because GC is strictly non-faster than deterministic memory management. Proof: GC has to create a list of memory to free, then free it. delete/delete[] can simply add memory directly to the list, then use the same algo to free it. – MSalters Sep 26 '08 at 11:24
1  
It was actually proven by Chris Sells that Non deterministic finalization (GC) is actually faster then using refernce counters. – Charles Graham Sep 29 '08 at 14:59
show 1 more comment
vote up 5 vote down

You can start here:

The Computer Language Benchmarks Game http://shootout.alioth.debian.org/

link|flag
That's a rather useless test, since it really depends on how well the individual programs have been optimized; I've managed to speed up some of them by 4-6 times or more, making it clear that the comparison between unoptimized programs is rather silly. – Dark Shikari Sep 26 '08 at 9:16
problem is that it focuson a relatively small subset of tests. no graphical interface. no integration with libraries. no resource management (memory, CPU, network) – call me Steve Nov 24 '08 at 23:42
@Dark Shikari "I've managed to speed up some of them by 4-6 times or more" - Why haven't you contributed those programs to the benchmarks game? – igouy Feb 21 at 17:43
vote up 19 vote down

It's five oranges faster. Or rather: there can be no (correct) blanket answer. C++ is a statically compiled language (but then, there's profile guided optimization, too), C# runs aided by a JIT compiler. There are so many differences that questions like “how much faster” cannot be answered, not even by giving orders of magnitude.

link|flag
vote up 3 vote down

As usual, it depends on the application. There are cases where C# is probably negligibly slower, and other cases where C++ is 5 or 10 times faster, especially in cases where operations can be easily SIMD'd.

link|flag
vote up 29 vote down

C# may not be faster, but it makes YOU/ME faster. Thats the most important measure for what I do. :)

link|flag
3  
Oh man, that's so true! – Trap Sep 26 '08 at 21:22
Depends on what you do, really. – Nemanja Trifunovic Sep 27 '08 at 0:49
1  
Haha, there's a good quote by Larry Wall on the topic. He's speaking about perl, but it can be thought of for all discussions involving languages and performance: " ..earlier computer languages, such as Fortran and C, were designed to make efficient use of expensive computer hardware. In contrast, Perl is designed to make efficient use of expensive computer programmers" – Falaina Aug 8 at 5:05
vote up 8 vote down

One particular scenario where C++ still has the upper hand (and will, for years to come) occurs when polymorphic decisions can be predetermined at compile time.

Generally, encapsulation and deferred decision-making is a good thing because it makes the code more dynamic, easier to adapt to changing requirements and easier to use as a framework. This is why object oriented programming in C# is very productive and it can be generalized under the term “generalization”. Unfortunately, this particular kind of generalization comes at a cost at run-time.

Usually, this cost is non-substantial but there are applications where the overhead of virtual method calls and object creation can make a difference (especially since virtual methods prevent other optimizations such as method call inlining). This is where C++ has a huge advantage because you can use templates to achieve a different kind of generalization which has no impact on runtime but isn't necessarily any less polymorphic than OOP. In fact, all of the mechanisms that constitute OOP can be modelled using only template techniques and compile-time resolution.

In such cases (and admittedly, they're often restricted to special problem domains), C++ wins against C# and comparable languages.

link|flag
Actually, Java VMs (and probably .NET) go to great lengths to avoid dynamic dispatch. Basically, if there is a way to avoid polymorphims, you can be pretty sure your VM will do it. – martinprobst Sep 29 '08 at 14:21
I'm aware of the VMs' abilities. However, this goes much farther. The point is that template C++ codes do use “dynamic” dispatching, or rather, something analogous. – Konrad Rudolph Oct 2 '08 at 15:50
vote up 4 vote down

C++ (or C for that matter) gives you fine-grained control over your data structures. If you want to bit-twiddle you have that option. Large managed Java or .Net apps (OWB, VS2005) that use the internal data structures of the Java/.Net libraries carry the baggage with them. I've seen OWB designer sessions using over 400MB of RAM and BIDS for cube or ETL design getting into the 100's of MB as well.

On a predictable workload (such as most benchmarks that repeat a process many times) a JIT can get you code that is optimised well enough that there is no practical difference.

IMO on large apps the difference is not so much the JIT as the data structures that the code itself is using. Where an application is memory-heavy you will get less efficient cache usage. Cache misses on modern CPUs are quite expensive. Where C or C++ really win is where you can optimise your usage of data structures to play nicely with the CPU cache.

link|flag
vote up 6 vote down

It's an extremly vague question without real definitive answers.

For example; I'd rather play 3D-games that are created in C++ than in C#, because the performance is certainly a lot better. (And I know XNA etc, but it comes noway near the real thing).

On the other hand, as previously mentioned; you should develop in a language that lets you do what you want quickly, and then if necessary optimize.

link|flag
Could you name a few examples? Games written in C# what you've found slow – kineas Sep 26 '08 at 14:10
Even the example applications that came with the installation felt slow. – David The Man Sep 30 '08 at 5:35
2  
The garbage collector is a huge liability in making games with C#, as it can kick in any time, causing major pauses. Explicit memory management ends up being easier for game development. – steveth45 Oct 30 '08 at 22:44
1  
Most modern games are GPU-limited. For such games it does not matter if the logic (executed on CPU) is 10% slower, they are still limited by GPU, not CPU. Garbage collector is a real problem, causing random short freezes if the memory allocations are not tuned well. – Michael Nov 26 '08 at 18:05
vote up 4 vote down

In my experience (and I have worked a lot with both languages), the main problem with C# compared to C++ is high memory consumption, and I have not found a good way to control it. It was the memory consumption that would eventually slow down .NET software.

Another factor is that JIT compiler cannot afford too much time to do advanced optimizations, because it runs at runtime, and the end user would notice it if it takes too much time. On the other hand, a C++ compiler has all the time it needs to do optimizations at compile time. This factor is much less significant than memory consumption, IMHO.

link|flag
vote up 0 vote down

I know it isn't what you were asking, but C# is often quicker to write than C++, which is a big bonus in a commercial setting.

link|flag
I'd say it's quicker most of the time :) – Trap Sep 26 '08 at 21:29
vote up 1 vote down

I suppose there are applications written in C# running fast, as well as there are more C++ written apps running fast (well C++ just older... and take UNIX too...)
- the question indeed is - what is that thing, users and developers are complaining about ...
Well, IMHO, in case of C# we have very comfort UI, very nice hierarchy of libraries, and whole interface system of CLI. In case of C++ we have templates, ATL, COM, MFC and whole shebang of alreadyc written and running code like OpenGL, DirectX and so on... Developers complains of indeterminably risen GC calls in case of C# (means program runs fast, and in one second - bang! it's stuck).
To write code in C# very simple and fast (not to forget that also increase chance of errors. In case of C++, developers complains of memory leaks, - means crushes, calls between DLLs, as well as of "DLL hell" - problem with support and replacement libraries by newer ones...
I think more skill you'll have in the programming language, the more quality (and speed) will characterize your software.

link|flag
vote up 2 vote down

> From what I've heard ...

Your difficulty seems to be in deciding whether what you have heard is credible, and that difficulty will just be repeated when you try to assess the replies in this forum.

How are you going to decide if the things people say here are more or less credible than what you originally heard?

One way would be to ask for evidence.

When someone claims "there are some areas in which c# proves to be faster than c++" ask them why they say that, ask them to show you measurements, ask them to show you programs. Sometimes they will simply have made a mistake. Sometimes you'll find out that they are just expressing an opinion rather than sharing something that they can show to be true.

Often information and opinion will be mixed up in what people claim, and you'll have to try and sort out which is which. For example, from the replies in this forum:

  • "Take the benchmarks at http://shootout.alioth.debian.org/ with a great deal of scepticism, as these largely test arithmetic code, which is most likely not similar to your code at all."

    Ask yourself if you really understand what "these largely test arithmetic code" means, and then ask yourself if the author has actually shown you that his claim is true.

  • "That's a rather useless test, since it really depends on how well the individual programs have been optimized; I've managed to speed up some of them by 4-6 times or more, making it clear that the comparison between unoptimized programs is rather silly."

    Ask yourself whether the author has actually shown you that he's managed to "speed up some of them by 4-6 times or more" - it's an easy claim to make!

link|flag
I couldn't agree with you more and that's the reason why I asked in this forum... After all, the answers have to be somewhere, haven't they? :) – Trap Sep 26 '08 at 21:39
Yes. The answer is "It depends.". – unknown (yahoo) Dec 29 '08 at 22:49
vote up 1 vote down

For graphics the standard C# Graphics class is way slower than GDI accessed via C/C++. I know this has nothing to do with the language per se, more with the total .NET platform, but Graphics is what is offered to the developer as a GDI replacement, and its performance is so bad I wouldn't even dare to do graphics with it.

We have a simple benchmark we use to see how fast a graphics library is, and that is simply drawing random lines in a window. C++/GDI is still snappy with 10000 lines while C#/Graphics has difficulty doing 1000 in real-time.

link|flag
vote up 3 vote down

Exactly 63.5 %

link|flag
1  
Slightly wrong. When I checked it was 63.46% ;) – Varun Mahajan Dec 11 '08 at 13:59
vote up 1 vote down

> After all, the answers have to be somewhere, haven't they? :)

Umm, no.

As several replies noted, the question is under-specified in ways that invite questions in response not answers, to take just one way:

and then Which programs? Which machine? Which OS? Which data set? ...

link|flag
I fully agree. I wonder why people expect a precise answer (63.5%), when they ask a general question. I don't think there is no general answer to this kind of question. – call me Steve Nov 24 '08 at 23:54
vote up 1 vote down

In theory, for long running server-type application, a JIT-compiled language can become much faster than a natively compiled counterpart. Since the JIT compiled language is generally first compiled to a fairly low-level intermediate language, you can do a lot of the high-level optimizations right at compile time anyway. The big advantage comes in that the JIT can continue to recompile sections of code on the fly as it gets more and more data on how the application is being used. It can arrange the most common code-paths to allow branch prediction to succeed as often as possible. It can re-arrange separate code blocks that are often called together to keep them both in the cache. It can spend more effort optimizing inner loops.

I doubt that this is done by .NET or any of the JREs, but it was being researched back when I was in university, so it's not unreasonable to think that these sort of things may find their way into the real world at some point soon.

link|flag
vote up 4 vote down

The garbage collection is the main reason Java# CANNOT be used for real-time systems.

  1. When will the GC happen?

  2. How long will it take?

This is non-deterministic.

link|flag
vote up 2 vote down

Applications that require intensive memory access eg. image manipulation are usually better off written in unmanaged environment (C++) than managed (C#). Optimized inner loops with pointer arithmetics are much easier to have control of in C++. In C# you might need to resort to unsafe code to even get near the same performance.

link|flag
vote up 2 vote down

We have had to determine if C# was comparable to C++ in performance and I wrote some test programs for that (using Visual Studio 2005 for both languages). It turned out that without garbage collection and only considering the language (not the framework) C# has basically the same performance as C++. Memory allocation is way faster in C# than in C++ and C# has a slight edge in determinism when data sizes are increased beyond cache line boundaries. However, all of this had eventually to be paid for and there is a huge cost in the form of non-deterministic performance hits for C# due to garbage collection.

link|flag
vote up 0 vote down

For 'embarassingly parallel' problems, OpenMP on C++ is about 10 times faster than C# with Parallel Extensions.

link|flag

Your Answer

Get an OpenID
or

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