Throughout my university career I used Java to code projects until I started working which is where I had to delve into the C# realm. Though the .Net library is fairly extensive I can't help but feel that there is something missing in C# as compared to Java. I would like to know if Java is any better than C# or vice versa from the experts out there. What would you use to develop both complex and fairly trivial applications? What are some of the advantages and disadvantages of using these 2 technologies over the other?
|
feedback
|
closed as not constructive by casperOne♦ Apr 5 at 14:02
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
For years C# was playing catchup with Java. That ended with C#/.Net 3.0/3.5 and now it's (mostly) the other way around. What does C# have that Java doesn't?
And Java has:
And sadly that's about all I can think of for ticks in the Java column. | |||||||||||||||||||||
feedback
|
|
In my experience of the languages, there's very little in Java but not in C# that I actually want. Enums and static imports spring to mind, but that's about it. There are plenty of things I don't like in Java:
There are many things in C# which I wish Java had:
Java 1.4 and C# 1.0 were very similar. Now the two languages (when written idiomatically) are quite different in many cases. I miss LINQ almost every day when I'm coding in Java. The differences in generics mostly come down in C#'s favour IMO, although the approach to variance in Java definitely has its advantages. C# 4.0 will get limited variance, which will at least help. | |||||||||||||||||
feedback
|
Also, having recently done some work with Awt and Swing for a part-time degree I'm doing, I'll add to this
I like the pattern, the ActionListeners and the various adapters, but I think once you're use to delegates in C#, the latter is far faster to work with (even with auto-generated code that IDEs like Netbeans produce) | |||||||
feedback
|
|
This is a nice read: C# From a Java Developer's Perspective | |||
|
feedback
|
|
I think the programmer is more important than the technology used. You can do fantastic software with either Java or C#. Don't get hung up which language is better. Instead focus on mastering what you use daily. | |||
|
feedback
|
|
I'm a Java developer, and have only read about .Net. My opinion: C# is a more modern version of Java (properties, delegates, other stuff). Some of the more strict Java 'features' gave been dropped (checked exceptions). C# is being evolved much more rapidly than Java, but you might argue that is a bad thing. Java has a very rich ecosystem. Every major IT player has something in the Java arena, with the exception of Microsoft. In the Javasphere you have a lot of choice: IDEs, frameworks, runtime environments, application servers. The C# arena offers much less choice. .Net is a better choice for Windows desktop applications, Java is better suited for large scale server applications. Please note these are very broad generalisations. | |||
|
feedback
|
|
First of all, none is better than the other. Each one has pros and cons. For instance Java is multi-platform and C# it's not (although they try to make it with mono, but it's not the same). On the other hand, Java tends to be a little more slower than C#, at least from my personal perspective. This all comes down to personal taste, or business decisions. | |||
|
feedback
|
|
Aside from the language-specific details, there is one difference between Java and C# that makes all the difference when choosing which programming language to use for a project. The difference is that C# is a Microsoft language, and Java is more or less open-source. This has three major implications on a new project:
Hope this helps... Yuval =8-) | |||||||||||||||
feedback
|
|
For me personally the main reason i pick up C# in favour of java is that java doesn't have Delegates (function references) so there's no (sane) way to implement a callback pattern. I find all the anonymous classes and interfaces to get Event based programing going in Java very very tiresome. Also Swing/SWT/AWT are all nice but i find WinForms or even GTK# generally more enjoyable and much much more responsive. Cant really say which one is better as they are fundementally different (eventhough they share alot of common syntax). | |||
|
feedback
|
|
Jump to the conclusion of this comparison of C# and Java. | ||||
|
feedback
|
|
Dare Obasanjo wrote a very good article on Java vs C# way back in 2001, but it still has a lot of valid points, definitely worth a read. Right here on Kuro5hin. EDIT: I bow to these other gentlemen, their links are preferable to mine and goes to the same article in a more readable format. | |||
|
feedback
|
|
For me, as a Windows programmer, C# wins but this isn't because of all the advanced stuff like generics, LINQ, etc. What I really, really like is that there is a single IDE (which is free in the express edition). Using this IDE you can develop console apps, windows apps (with an excellent form designer built in), web apps, database apps etc which will all build and run without having to carefully set up lots of different components. NB For comparison, I installed RAD and couldn't even find where to start typing the code in. | |||||||
feedback
|
|
Being traditionally a straight C programmer, I like c# because it's easier to interop with native functions and the winapi (and presumably linux so's although I haven't played with mono as much as the ms framework on a winbox) just compare c# shared library class to the torture that is jni. 2 lines of code is what it takes. But the creators of java apparently thought it was a good idea to give everyone carpal tunnel and they have to type and type endlessly to accomplish the simplest of tasks | |||
|
feedback
|
|
I'd say LINQ's expression trees if only I know what they were. :) | |||
|
feedback
|
|
More sugar, less guts. C# has a whole shopping list of syntactic sugar - properties, linq, closures, delegates - which makes typing things easier. Java has a wider range of libraries, both in the standard libraries and I get the impression in OSS. The standard libraries are often very good. The Sun JVM is also recognised as being very good. I've spent the last couple of months on a project working with Windows.Forms in C#, and very much the comment stands - syntax sugar - closures rather than anonymous classes, events and delegates rather than maintainings list of handlers - are the main differences. Attempts to add queries to Java which were not language integrated have been made, but failed - with static imports and anonymous classes you'd have to write
instead of Linq's
but they are completely equivalent. To implement Linq to SQL, you'd have to do some analysis of the byte code as Java does not have a built-in expression tree, but JVM byte code is at a high enough level that it is not significantly more complicated to process than an AST. The C# OSS (NUnit,Saxon.Net) I've used follow from Java rather than innovating itself - most of the innovative C# stuff seems to come straight from Microsoft research, but the Visual studio IDE is better than the IDEs I've used for Java, especially for GUI work. | |||||||||||||||||
feedback
|