I know that this question seems to be a holy war, but I just want to ask what language is better to learn in my case.
I have read comparison of Java and C# in Wikipedia. As far as a could understand, C# is a better language than Java (structs, delegated, operator overloading and so on), and I like Visual Studio more than Eclipse or Netbeans. But Java is cross-platform and widely used.
Most of my friends don't like C#, they say Java is better.
I want to focus on desktop (for windows) and web development. Now I know some C# and .NET framework basics. Should I switch to Java?
|
|
|
||||||||||||||||
|
closed as subjective and argumentative by DrJokepu, Darin Dimitrov, Henk Holterman, finnw, Geo Nov 8 at 10:53 |
|
|
Are you going to create cross OS desktop application? If yes, then you should stick with Java. Although C# has mono coming but the support is limited. If you are concentrating on Windows desktop application, then by all means switch to C#, right now. C#, as you said, is a much much better language, with Visual Studio beating Eclipse and other Java IDE hands down. If you are doing server side development, then the difference between C# and Java is less than pronounced. |
||||||||
|
|
|
Both languages will do what you want to do with java pulling ahead in the cross-platform part. I don't believe you can go wrong with either choice. I would also suggest looking at other languages than just these two. I know I'm probably going to voted down for this but why not look at python/ruby for the web development part? Those languages can also hold their own in the cross os desktop applications and will integrate with your java or .net stuff if you want it too. The java platform in my opinion has an edge in that regard with jpython and jruby being quite solid. |
||
|
|
|
|
I've been doing a bit of C# GUIs for the last few weeks, having a background with Swing, GTK, MFC and Win32. Java Swing is about the worst for getting an acceptable UI on Windows. You end up doing an awful lot to get simple idioms such as split buttons working, which are built-in to the platform, and you don't have the simplicity that you get with GTK + C function pointers. Similarly, if you want a native GUI on linux use GTK (either python or C) and on OS X use objective C. Java Swing GUIs seem to be much more effort than other toolkits, without either the performance of OpenGL, the render quality of antigrain, or a native look and feel, so have for got squeezed out by C at the performance end, Python+GTK at the quick-and-dirty end and C# for native look. With Visual Studio, it's very quick and easy to create UIs, as fast as Python. If you know Java and Win32, C# + Windows.Forms is a doddle. Almost all the web development I've done since the last '90s has been Java; it's more likely than you will want to run a web server on a non-windows machine, and I've not seen a reason to change that. Traditionally, Java web servers and the JVM have been considered better, but trying to find meaningful comparisons is tricky. |
||
|
|
|
|
Serey, you need to specify a bit more the sort of applications and systems you intend to be programming to get better advice. There are various issues at play -- your skills, your willingness to learn, the platforms you are targeting (Windows, Unix, Linux, Mac), whether they are desktop or web applications, etc Personally I would learn both depending on my needs, but have one as my primary language. |
||
|
|
|
|
You should think about development platforms, not languages. Compare .NET and JEE and then make choice about language. If you need cross-platform solutions, look at Mono. |
||
|
|
|
|
If you want to focus on desktop development, as you're saying, your choice is definitely C# and dotNet. The obstacle "cross-platform" is in reality not existing: you could use Mono to port the C# code on Mac and Linux and use MonoDevelop as IDE on these systems. |
||||||||
|
|
|
The more tools you have in your belt, the better a programmer you are. If you know how to use them, that is. So, don't switch, but perhaps learn both. If you ever need to target non-Windows clients, Java is a much better bet than .NET, and knowing both will make you understand many things better. |
||||||
|
|
|
Hi Sergey! Well, it depends. In general, if you want to write cross-platform applications (right now) than Java is better. (It's better to say cross-OS applications, because Java is platform itself.) And what about better language... I don't think that better language means language with more amount of syntax sugar. =) |
||
|
|
|
|
If you want to focus more on web development, then i would personally recommend c# or similar. But as mentioned above, definitely stick with java for cross platform desktop development. |
|||
