Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I come from a C++ and Java background (but I didn't use swing) and I have a semester project where I have to build an application with a GUI . My teammates only know C++ so they will have to learn either to program with Java or C# anyway . So , My question is which will be better for my team : make good use of my Java experience or we all learn C# from scratch ? Will it make a difference ? Which language has the easier learning curve and the ability to build windows GUI apps with no much hassle ?

P.S :I am not trying to start the famous Java vs C# argument but I really need to pick what is best for my team in learning and getting a project up in about a month and a half of non dedicating work (we have other projects and courses) .

share|improve this question
2  
in terms of easiness of curve Java and C# are equal. – Andrey Nov 4 '10 at 20:13
4  
and if speaking about GUI i think that C#/.net are winning. – Andrey Nov 4 '10 at 20:14
toss a coin (4 more to go) – Albin Sunnanbo Nov 4 '10 at 20:15
There are a lot of things about C++ that are terrific. Its learning curve is definitely not one of them. – James McNellis Nov 4 '10 at 20:30
Just wondering if you had made your decision on what the team and you are going to use for the project, and wondering how the project was going and what exactly you were going to be doing with the project. Just curious. – prolink007 Nov 10 '10 at 15:58
show 1 more comment

13 Answers

up vote 1 down vote accepted

In a semester project you will not have time to learn a language, learn a framework (ie, how do you program a GUI and hook up events, etc), AND finish your project.

If you must use one of c# or java (and not C++), then use Java. You have no time for anything else, since you need to do your project and learning a language is not the main goal anyway.

share|improve this answer
That's pretty wise really. – Ahmed Nov 5 '10 at 18:13

I came from a C++ background, with a stint using Java in there for a while.

For my money, you can't beat C#, primarily because of the tooling that Visual Studio gives you. Visual Studio makes the learning curve for C# much less steep. You'll also find that C# has a lot in common with Java.

Using WPF in Visual Studio and Blend to create windows apps is about as easy as it gets.

share|improve this answer
3  
Data binding issues aside, yes, WPF is pretty cool and not so hard... Data binding issues aside. – Gabriel Magana Nov 4 '10 at 20:18
2  
Not sure what "Data binding issues" you're referring to... I've not really encountered any problems. – Adam Barney Nov 4 '10 at 21:12
Like building a house, how easy it is depends on how good your tools are. VS, Blend are great tools that are evolving, although writing pure XAML with ControlTemplates etc is not that easy to begin with. – aqwert Nov 5 '10 at 0:24

Have you looked into QT?

http://qt.nokia.com/products/

QT is very easy to learn for those that are using c++/c# and java. It is very good at GUIs.

You will also need to consider if your project needs to be multi-platform or not.

share|improve this answer
Platforms won't matter really but you gave me an interesting option because me team already know C++ . – Ahmed Nov 4 '10 at 20:24
It is based on c++ and is very easy to learn if you already know c++ and java or c#. – prolink007 Nov 4 '10 at 20:25
Qt also has a GUI designer and there is a great free IDE Qt developer and easy to follow documentation – iain Nov 4 '10 at 21:03
If you all know C++, Qt is a great solution. There is a great amount of very diverse Qt examples that come with the Qt download, covering everything (multithreading, different GUI designs and looks, opengl painting, networking, mediaplayers, browsers,etc.) - with the souce code. Most of them are simple short programs. – Will Nov 4 '10 at 22:15
+1 for Qt. I now use Qt full time and was using MFC before that. I will never go back to MFC. Qt is a no-nonsense C++ framework with great online documentation (and books also), a free IDE (QtCreator), and, it's free. – Etienne Savard Nov 4 '10 at 23:24
show 1 more comment

In my opinion Java and C# are about equally easy to learn, but taking into consideration your experience with Java, it'll be easier for everyone to go with Java, as your team has someone to go to.

However as for developing GUI windows applications, .Net C# is much easier regardless of you go with winforms or WPF.

So in short if it's mostly programming then I'd go with Java if I was you, but if there are alot of GUI work then definately C#.

share|improve this answer

This article explains how long it takes to learn a programming language. If anyone tells you it is less - they are lieing. Therefore, just pick a language and stick to it.

share|improve this answer
2  
Nice read . Thank you :) . – Ahmed Nov 5 '10 at 18:14

I would have to say that the built in Toolbox in VS will be very helpful when creating winforms using C#.

However, you might be able to shave some time off of coding by using Java since you are already familiar with it.

Tough one.

share|improve this answer

On one hand you could use visual J# 2005 to make a java app with a gui, which I would recommend due to your java experience or you could all learn C# and use windows visual c#, either way, I'd use visual studio for your programming environment, and java as your language.

share|improve this answer

Java and C# are really quite similar in terms of their learning curves. While I prefer C#, it might actually be slightly easier to learn Java due to its better documentation (I hate MSDN) and the fact that you can avoid learning about C#'s nice features like Linq, delegates/events, partial classes, properties etc.

If you're proficient in C++, I don't imagine you'll struggle to pick up either of the languages. But do consider the QT framework for C++. It's really quite good and easy/quick to learn, and it could be a timesaver for your team.

share|improve this answer

BASIC is pretty easy, and powerful too. You might just not use it for real life projects. Having said that, most people disagree as you touch on the subject what each person finds easy. Easy is different for a programmer that speaks 10 languages already and a farmer who wants to learn to program for his milking automatron. If you do not want to do productive programming but just want to dabble a little in it, try (don't laugh) Lego Mindstorms. The language is pretty easy and the results are cool.

Edit: A little bit outdated with his edit of the original post, but I'll let it stand either way.

share|improve this answer

IMHO, Java and swing is a piece of cake with Netbeans and the Matisse guide designer it comes with. Even if you know 0 swing, as long as you know a little Java, you'll get some really funky GUIs up and running...

share|improve this answer
Yeah, doing swing by hand can be tedious in Java, Luckily I found Mig layout being suggested here in SO. It helped me with development of some school projects: miglayout.com – Prozaker Nov 4 '10 at 20:19

Depending on your professor's flexibility, you might be able to get away with building a web application and then wrap it with Adobe Air if it needs to run offline.

share|improve this answer

I will throw in my vote for Java. I like C#, but if you have one expert in Java I think you'd be better of in there. Escpecially if you need to complex things like, like thread, callbacks etc. Of course all of those can be done in C#, but it would take longer to learn new syntax.

If your doing a Swing GUI, I think the visual editor in NetBeans awesome. You can make some rocking GUI's in there easily. Of course WinForms in Visual Studio rock too. I just like Java, and NetBeans Swing editor is a gift. :)

share|improve this answer

As others have pointed out, there probably isn't much in it, but as you are using Windows then the 'native' GUI support in C# is better (vs the cross-platform but more generic Java GUI).

As for learning, my first C# project was actually to port a substantial Java library, whilst learning C# on-the-job. It took me a matter of days - much, much quicker than porting about half the library (my extensions) from C++ to Java. I guess ny point is that once you have one of Java or C# under your belt, then you'll pick up the other in no time at all; and that they are more alike than either are like C++.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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