vote up 2 vote down star

Which areas of programming are each language best suited for?

I like both C++ and C# but i prefer to use C# because of .NET.

My question is when will you use C++ and when do you use C#?

So if you make a financial application for a company you will use C#? ( It's easy to design a form and connect to a database without downloading 3rd party libraries, and if you make advanced algorithms you would use C++ for it's speed?

This is my idea. I just watched video's @ http://www.academicearth.org, and it seems that universities prefer to use C++ for Machine Learning for example.

What do you guys think of it? and what is the industry view on this.

flag
C# vs C++.Net or C# vs C++ native? – Dykam Aug 9 at 16:43
C++ Native :) .. .. ... – ReDAeR Aug 9 at 16:44
Thank you Jalf for editing my question, it is much clearer now. – ReDAeR Aug 9 at 19:26

7 Answers

vote up 11 vote down check

Trying to compare the two isn't really fair -- C++ is usually used nowadays when you have the need for low-level, or portable, high performance code. You rarely find it used to implement business logic for enterprise systems, though about 10 years ago you did. You certainly wouldn't want to start out development with an enterprise system with C++ today unless you had a really, really good reason to.

But in academia, C and C++ have been used for many years, so it's probably not surprising that there is a large base of C++ code there for things like Machine Learning. C++ can often be faster than C# when it's optimized properly. It can run with less memory, on more platforms, and with fewer dependencies on large frameworks than C# can.

C#, however, is a lot more forgiving with its memory model, and typically has access to Microsoft or Mono's very large, comprehensive framework which allows developers to do a lot of stuff with minimal development effort, time, and cost. If you're working on the Microsoft platform, it is arguably the standard language nowadays.

Also see: http://stackoverflow.com/questions/316243/which-programming-language-to-learn-now/316256#316256

link|flag
Thank you for your answer. – ReDAeR Aug 9 at 17:06
Agreed for the most part, though I'm not totally in line with grouping C and C++ into the same category. The really low-level stuff gets covered by pure C still and not C++ (e.g. kernels, drivers). Arguably, C++ covers a gap in power/easy-of-use that no longer exists with the advent of C# and other similar languages. – Noldorin Aug 9 at 18:53
I should note that speed tests for the latest version of the C# compiler/CLR match or even beat C++ in various cases. – Noldorin Aug 9 at 18:54
Do you have a reference for such a speed test? That would be useful for a number of people. – Eric J. Aug 9 at 19:01
@Noldorin: Probably a fair statement. Now what in the world is up with Objective-C? Just when you think a language is dead and buried.... ;-) – Dave Markle Aug 10 at 0:56
vote up -2 vote down

I like multiple inheritance. My attitude is - if you hate weed don't take it. I hate weed. If you don't like babies don't abort them. I love babies. So if you hate multiple inheritance don't use it. Just don't present barriers towards my using it.

Unfortunately, the moment any c++ code hit on a managed class/component, .NET disables the multiple inheritance feature.

So - if I'm not doing managed code - I use c++ because of operator programmability and multiple inheritance.

I don't care so much about the speed improvement c++ gives me. After waiting for the database, the equipment to respond, the user to decide what to do - what should I do with all those extra processor cycles?

link|flag
This is incoherent and too narrowly focused to be useful. – Drew Hoskins Aug 10 at 0:05
vote up 1 vote down

From a commercial and support perspective, C# is still a one platform wonder. If you're not targetting the .NET runtime then it's not usually a realistic choice to use C#.

C++ is supported by a huge array of platforms, from embedded OS's to super-computers.

If you're targetting .NET, then C# is probably a more suitable language, there isn't really a good binding for C++, C++/CLI is more like a different or extended language in any case.

If there is a genuine choice, then the most overriding consideration should be the expertise available. Getting a bunch of C++ experts to develop in C# is a poor use of skills; writing a system in C++ with no C++ experts will probably result in a mess.

link|flag
vote up 2 vote down

The one feature I like in C++ is the low-level access to memory and the control over memory-layout of structures. If you interface with even lower level APIs such as OpenGL, you usually interact with arrays of basic datatypes, such as floats. In C++, you can cast a void* texture to user defined types such as Image2D<PixelWithAlphaChannel<float, 4> > and use a fully object oriented interface for this otherwise unstructured dump of unspecified data.

If you cannot afford to keep multiple copies of low-level API data, C++ is the way to keep your code clean. However, you trade a lot of developer time for this. While in theory C++ allows for faster code (or at least the same speed, you could implement .NET in C++, but not vice versa), having tools such as Resharper and dotTrace can enable developers to improve the performance faster. So in practice, I'd opt for C# for both financial applications AND performance critical algorithms, IF they are not constrained by low-level APIs.

link|flag
vote up 6 vote down

Always use C# for business solutions. It's a more evolved language.

I worked for a company that does real-time authentication for PPV (like if you buy WWE or boxing on cable). They have huge volume right before the event. The team that worked on that part insisted that it had to be written in C++ for speed.

After a year of debating, we finally wrote a prototype replacement in C#. It turned out that the replacement was twice as fast.

There are VERY few problem domains where you need any of the optimizations you can do in C++ that are unavailable in C#, but C# code is much less error prone.

link|flag
1  
+1 to counteract the inevitable downvotes you'll get. But you're absolutely right. – Earwicker Aug 9 at 16:59
Thank you for your answer aswell ( ofcourse all answers) It gives me more confidence to focus on C# – ReDAeR Aug 9 at 17:30
The C++ 1 year old solution was outperformed 2 to 1 by a C# prototype?! I can't even imagine how weak the C++ programming must have been. – rpg Aug 9 at 18:55
How can you say that without knowing any of the specifics of the problem domain? I might as well say "I can't believe your Ferrari was beat 2 to 1 by an H1" and not realizing that the course may have been offroad. – Eric J. Aug 9 at 19:03
@Razvan - that is not actually an unusual result. Sadly your reaction is not unusual either. A C++ program, if written in the recommended safe style (using RAII, classes as value types, std containers and strings) typically performs worse than the equivalent C# program, mainly because the .NET GC performs so phenomenally well. To make the C++ program perform better requires a great deal of effort and expertise - far more than most projects can afford (or really need). – Earwicker Aug 9 at 21:00
show 5 more comments
vote up -1 vote down

If you want to write fast algorithms/software or software that has to process a lot of data then I'd say go for C++. C# is good for GUI applications.

link|flag
Why? What's an example of a fast algorithm that can't be implemented well in C#? Granted, if you need direct access to memory/hardware you will need to compile with the unsafe directive (though if you design well, you can limit that to one DLL), but that leaves you no worse off than you are with C++ in terms of being able to mess things up, while providing all of the advantage of a language that learned from C++'s shortcomings. – Eric J. Aug 9 at 17:38
1  
Image/Video/Audio processing are examples where .NET doesn't shine, really. Mainly because CLR still doesn't support SIMD. – Ray Aug 9 at 18:48
Mono supports SIMD – Daniel Aug 9 at 21:20
I still find most interactive applications built on C# (and Java) to be bloated and unresponsive. I think it's still more appropriate for non-interactive applications, though .NET is slowly getting faster and better. – Drew Hoskins Aug 10 at 0:06
vote up 2 vote down

Often we will use C# for front-end UI development, and C++ for server-side. One of the main reasons is portability/speed. People tell me mono for C# on linux/OSX is fast and stable, but from what I have seen that is not the case. YMMV.

link|flag
Mono works nice, if you use GTK# as gui, not windows forms. It's not that bad IMHO. – sztomi Aug 9 at 16:53
I used Monodevelop and GTK# a long time ago, the dev environment was pretty nice but proved to be difficult when trying to port the GTK# code back over to windows. I should give it another shot. – daed Aug 9 at 17:04
Gnome-Do is written in Mono. See yourself how performant and stable it is. – Ray Aug 9 at 18:45

Your Answer

Get an OpenID
or

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