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

I've been a "Microsoft developer" ever since I started programming... I started out by learning QBasic then ASP & Visual Basic and finally I moved on to learn VB.NET, ASP.NET and C# which is now my primary language. Still I've always wanted to learn something like Java or C++ to see how what the "other side" is like, and to learn the pros and cons of each platform. The only problem is that I never found the time or opportunity to pick up another language.

My basic understanding is that Java and C# have a lot of similarities as well as a lot of differences. Coming from C# I'm mostly interested in what C# could learn from Java, or put another way, what I'm missing out on.

share|improve this question
4  
The more common question I've seen is what did C# learn from Java - in particular it was "several years late to the game", but skipped past many mistakes Java took us through. It's all about the continual learning process, and the next language will learn from both Java and C# (and others). – 280Z28 Aug 25 '09 at 6:47
@OP: Probably you should make this post 'Community Wiki'. – Noon Silk Aug 25 '09 at 6:51
@280Z28: I get that C# 1.0 was based on Java, C and probably other languages. But I guess they didn't copy the entire language so maybe they (Mr. Hejlsberg) left out 1 or 2 usable features. Also all languages evolve and maybe there are new features in Java today that didn't exist back then. – JohannesH Aug 25 '09 at 6:57
I think you could learn a lot (and that can be spawn to a whole Microsoft) about robustness, stability, scalability, availability, which in turn does not have much about the way loops are written or classes are defined, what I beleive you expect to find 'on the other side' – ante.sabo Aug 25 '09 at 7:10

closed as not constructive by Kirk Woll, ataylor, Radu Murzea, Frank van Puffelen, John Koerner Jan 15 at 18:08

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

7 Answers

up vote 2 down vote accepted
  • checked exceptions
  • package visibility for submodules. AFAIK you can only have one module per assembly. I mean a group of tightly coupled classes which can see each other but should be hidden from the outside world.
share|improve this answer
5  
I think checked exceptions were explicitly left out after observing Java's experience with them. – duffymo Aug 25 '09 at 9:35
@duffymo: maybe ... but some people think that was a mistake. I >>like<< the idea of being forced to think about exception handling. – Stephen C Aug 25 '09 at 9:59
Checked exceptions were left because there exist programming languages for the .NET framework which do not support checked exceptions anyway. So for compatibility reasons, it was left out. – Scoregraphic Aug 25 '09 at 11:18
Checked exceptions are an example of what Erik Meijer calls "type honesty": that a type signature should not lie to the programmer. If the type signature says int foo(), then the method should really return an int. But it doesn't: it returns either an int or not (i.e. null) or an Exception. And that fact should be recorded in the type signature. E.g. in Haskell the return type would be Maybe Int if it could return null, Either Exception Int if it could return either an exception or int and the combination of both would be something like Either Exception (Maybe Int). – Jörg W Mittag Aug 25 '09 at 12:08
4  
stephen c: you haven't used java enough then :) duffymo is completely correct. c# learned that checked exceptions caused bad coding approaches, and were generally not useful, hence they are gone! hooray! – Noon Silk Aug 31 '09 at 4:30
show 8 more comments

Nothing, C# based itself on Java :)

prepares to be ridiculously downvoted

share|improve this answer
2  
+1 for 'prepares to be ridiculously downvoted' – rahul Aug 25 '09 at 6:47
2  
I don't agree that it is plainly based on Java, but it certainly took inspiration from it. Many of the Java features were adapted and others were left out for a good reason (eg. checked exceptions). – Filip Navara Aug 25 '09 at 6:48
1  
Agreed on checked exceptions, I was overjoyed to find them gone in C# :) I certainly think C# has done quite well from it's basing of Java, and is now headed to the darkside with it's desire to be more like JavaScript :P – Noon Silk Aug 25 '09 at 6:50
Surely both languages has evolved since the inception of C# so even if C# somehow managed to get all the good features from Java (which I doubt) from the start, they might have a thing or two to teach one another now. – JohannesH Aug 25 '09 at 7:01
Actually, C# is pretty far from Java. C# has a much more "European" flair to it. Which makes sense: Java was designed by Americans with C++, Smalltalk and Lisp backgrounds, C# was designed by Europeans with Pascal and Modula backgrounds. C# is mostly Modula-2 with C++-like syntax, and a pinch of Eiffel and Oberon thrown in. The deep integration between IDE and language is lifted straight from TurboPascal and Delphi. The only thing that is even remotely Java-like is the object system, but even that has a distinct Scandinavian/Simula/Beta flair about it. – Jörg W Mittag Aug 25 '09 at 11:36
show 1 more comment

Should support Java like Enums, In C# they are just name for numbers !!

share|improve this answer
1  
Well...it's an enumeration...if you need the Java enum behaviour, use a "real" class instead. – Scoregraphic Aug 25 '09 at 6:57
2  
It's a fair point. "Real" classes don't get the nice syntax sugar, the [Flags()] attribute, etc. – Richard Berg Aug 25 '09 at 7:08
1  
[Flags] isn't necessary in Java, thanks to EnumSet<T>. It's safer and integrated into the Collections framework, double win. The only bad thing I can come up with about Java enums is that enum fields/variables are nullable. – gustafc Aug 25 '09 at 8:52
I actually wish Java's enums were just names for numbers. – izb Aug 25 '09 at 9:27
@izb: :) – Prashant Aug 25 '09 at 9:48
show 1 more comment

I think C# would be better off if they enforced the one public class per file and forced you to put your code files in a directory structure which matches the namespace (i.e. "package"). This is one thing I really like about Java that frustrates me in C#, especially when people start moving .cs files around, and putting multiple public classes in one file.

share|improve this answer
3  
That's an absolute frustrating thing in Java. Hundreds of folders, most empty and absolute useless. Refactoring is a pain too! – Scoregraphic Aug 25 '09 at 6:53
2  
I believe that has more place in StyleCop than the language specification itself. – 280Z28 Aug 25 '09 at 6:57
4  
If you have hundreds of empty folders, I don't think you're doing it right. – Andy White Aug 25 '09 at 6:59
Agreed, I should have written that an empty folder in my view is a folder without classes inside (subfolders may exist). Namespaces are often like com.company.product.library where most classes are in the library subfolder. But why do I need such a long stack of folders? – Scoregraphic Aug 25 '09 at 7:05
I see your point, but I still think it's much easier to find any arbitrary Java code file than a C# file. If you look at the Java package, you know exactly where to find the file, whereas with C# the file can literally be anywhere. I think the whole concept of a namespace is the main culprit for the verbosity. Namespaces are a tradeoff between convenience and uniqueness. – Andy White Aug 25 '09 at 7:12
show 4 more comments

Personally I would have preferred to use the Java style for properties. I don't like the fact that properties in C# looks exactly like fields and yet have entirely different semantics. By making it clear that properties are really just methods there is no illusion and less risk of mistakes.

share|improve this answer
I've disliked C#'s properties ever since I first started in it (8 years ago now). But these days I'm over it, and I think they're great. I do wish you could DataBind to regular fields though. – Noon Silk Aug 25 '09 at 6:53
If you give direct field access to other classes, you may not have understood OOP. So expect every "field" to be a property. – Scoregraphic Aug 25 '09 at 6:55
7  
C#'s properties are one of the reasons I have to chuckle to myself when I see people writing Java code. You prevent mistakes by following the through-and-through consistent naming conventions and realizing that properties are simply an improved field with the ability to have logic/validation. When properties are written as methods, is suggests that object traits are actions, and that is a far worse semantic mistake that properties/fields having similar appearance. – 280Z28 Aug 25 '09 at 7:02
@Scoregraphic: That's a fair point, but the problem exists even within a single type, so this is not tied to encapsulation or the lack thereof. You cannot tell if Foo.X is a field or a property, and the difference does matter in several cases. Furthermore you can change X from a field to a property or vice versa and in some cases that will have side effects. – Brian Rasmussen Aug 25 '09 at 7:04
1  
@Jesper: Actually, C# still violates the Uniform Access Principle, because while properties and fields look the same, fields/properties and methods do not. The correct way to fix Java's violation of the UAP is not to introduce yet another access method, but rather to remove unnecessary access methods. Newspeak works just fine with only methods, ECMAScript works just fine with only fields. There's really no need to have both. (Fields are just getter and/or setter methods. Methods are just fields with executable code (delegates, lambdas) in them.) – Jörg W Mittag Aug 25 '09 at 11:52
show 5 more comments

Anonymous interface implementation - Java does it, C# does not (yet).

For example:

// C#

interface IRunnable
{
    void Run();
}

var runnable = new IRunnable()
{
   public void Run()
   {
      Console.WriteLine("Running...");
      // Do your running
   }
};

runnable.Run();
share|improve this answer
But in C# you use delegates for that. Java's anonymous interfaces are only(?) there to compensate for the lack of delegates. – erikkallen Sep 22 '09 at 16:46
I'm a heavy user of delegates, but I still come across times it'd be nice to inline a interface implementation rather than actually create a class. It's not needed, since I can always use some OO design pattern. I really got used to this feature in Java and wish I had it in C#. – Travis Heseman Sep 23 '09 at 12:08

C# obviously learned a great deal from Java, just like Java did from C++. They've traded back and forth in both language features (e.g., Java taking annotations from C#) and ancillary projects (NHibernate, NAnt, Spring.NET, POJO/POCO based development, etc. all have their origins in Java).

But I'm afraid that Java's not advancing anymore now that Sun lost market and people and has been sold to Oracle. I don't see anything coming out of Java or vendors that looks terribly new right now. Java 7 has been a long time coming, and it's catching up with closures and other things.

I think whatever energy is left in language development has passed to dynamic and functional languages.

The only development that I'm aware of that could change that is Rikard Oberg's Qi4J. He's so out there. It's just going to be a long time before it becomes mainstream, if ever.

share|improve this answer

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