vote up 2 vote down star
3

Hi,

I am a C# developer, but I was asked to join a Java project for some time. What are the best resources (books, web pages, etc.) to quickly learn Java? Ideally I don't want to read the basics of OO programming, garbage collection, etc., just concentrate on the things that are different in Java.

I know there are some good books the other way round (C# for Java developers), but I need to transition the "unusual" way.

flag

4 Answers

vote up 2 vote down check

Have a look at this article by Dare Obasanjo. It's a little old, but still worth the read. If you want a proper Java book, I hear good things about Head First Java.

EDIT: I realize that his situation was reversed from yours, but it's still a good read :-)

link|flag
vote up 1 vote down

Uhm, the language specification? And yeah, well the API that's were most of your focus should be. C# and Java started out very syntactically similar but C# has diversified itself since then.

I would go so far as to say that Java can be taught of a subset of C#.

The big difference lies within the API and that you'll have to practice. The Java API documentation is actually a good start, writing Java software helps to.

link|flag
vote up 2 vote down

What you don't need is to learn "java the language". If you are proficient in C# you will pick it up on the fly.

What you do need is to learn the new standard API, and it might take time. It is huge to try to learn it upfront, but learn parts as soon as you encounter them. Later, it will click and you'll be able to just use it.

Of course, having teammate that already knows java is invaluable, since no book or online rerource will be so helpfull.

And lastly, ask here for a concrete problems.

link|flag
vote up 0 vote down

Effective Java Second Edition by Joshua Bloch is an excellent and concise resource. Its a very highly regarded book and rightly so imho.

link|flag

Your Answer

Get an OpenID
or

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