vote up 2 vote down star

I'm pretty fluent in C#, but maybe need to go over to the dark^H^H^H^H other side and code some Java again. I'm ok with the Java language, as well as OO in general. But I want to learn some more about whats special in Java, as well as, if possible, whats different for me as a C# developer. Especially I need to catch up on some GUI stuff.

This would sort of be the opposite of the this question: Can you recommend a good C# windows programming book (for Java developer)

flag

7 Answers

vote up 3 vote down check

If you're already comfortable with OO, I would suggest focusing on threading and the Java memory model.

These things are pretty Java-specific, and really handy to know -- a lot of GUI programming issues are actually threading issues (running tasks off of the Swing EDT without deadlocking, etc).

A great book for this is Java Concurrency in Practice.

link|flag
vote up 3 vote down

Thinking in Java, by Bruce Eckel, just because I think it's the best book on Java (not for any moving-from-C# reasons).

link|flag
vote up 2 vote down

Take a look at Effective Java 2ed by Joshua Bloch.

Not specifically for C# programmers, but gives a good feel for idiomatic Java.

link|flag
vote up 1 vote down

As someone who just went from Java to C# recently, I would actually recommend just googling around for this one. There are some great comparison/contrast pages out there. I bought a book on C# that pointed out the differences from Java, but now wish I had just stuck with googling.

link|flag
vote up 1 vote down

hi there,

"Core Java", volume 1 and 2 give good coverage to both the server side and GUI side of Java. Apart from Bruce Eckel's "Thinking in Java", I cannot recommend any other book which has decent coverage of java fundamentals, GUI fundas and some server side info.

Java Power Tools, from O'Reilly is also a decent 2nd or 3rd Book on Java. But I would read this book only after the above books.

BR, ~A

link|flag
vote up 0 vote down

If you know the basics of Java, and it sounds like you do, then I would start to look into Java specific constructs that are built into the language....

things such as the Observer, Observable interface (especially for implementing MVC in your "GUI stuff), toolkits like Swing and SWT, the threading model, etc..

link|flag
Observer and Observable?! That's a bit 1.0. – Tom Hawtin - tackline Sep 16 '08 at 14:46
vote up 0 vote down

I would recommend "Java Cookbook" as it can show you how to do things you may already know in C#.

link|flag

Your Answer

Get an OpenID
or

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